rust/tests/pass/args.rs
2022-06-01 10:53:38 -04:00

6 lines
83 B
Rust

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