6 lines
83 B
Rust
6 lines
83 B
Rust
fn main() {
|
|
for arg in std::env::args() {
|
|
println!("{}", arg);
|
|
}
|
|
}
|