RosettaCodeData/Task/Command-line-arguments/Nanoquery/command-line-arguments.nanoquery

9 lines
111 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
//
// command-line arguments
//
// output all arguments
for i in range(0, len(args) - 1)
println args[i]
end