]> git.lizzy.rs Git - rust.git/blob - tests/run-pass/args.rs
implement passing arguments to the interpreted program
[rust.git] / tests / run-pass / args.rs
1 fn main() {
2     for arg in std::env::args() {
3         println!("{}", arg);
4     }
5 }