rust/tests/run-pass/args.rs

5 lines
83 B
Rust

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