rust/tests/run-pass/args.rs

6 lines
83 B
Rust

fn main() {
for arg in std::env::args() {
println!("{}", arg);
}
}