rust/tests/run-pass/args.rs

6 lines
83 B
Rust
Raw Normal View History

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