RosettaCodeData/Task/Command-line-arguments/V-(Vlang)/command-line-arguments.v
2023-07-01 13:44:08 -04:00

7 lines
92 B
V

import os
fn main() {
for i, x in os.args[1..] {
println("the argument #$i is $x")
}
}