4 lines
128 B
Scala
4 lines
128 B
Scala
|
|
object CommandLineArguments extends App {
|
||
|
|
println(s"Received the following arguments: + ${args.mkString("", ", ", ".")}")
|
||
|
|
}
|