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