8 lines
111 B
Text
8 lines
111 B
Text
//
|
|
// command-line arguments
|
|
//
|
|
|
|
// output all arguments
|
|
for i in range(0, len(args) - 1)
|
|
println args[i]
|
|
end
|