// c2x7.scala (PrintThreeFromCommandLine) // chapter 2, exercise 7 package x; object c2x7 { def main ( args : Array[String] ) = { // no error checking Console.println( "Arg 1: " + args( 0 ) ); Console.println( "Arg 2: " + args( 1 ) ); Console.println( "Arg 3: " + args( 2 ) ); } }