mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-02 19:28:19 +08:00
7 lines
96 B
Rust
7 lines
96 B
Rust
use std::env;
|
|
|
|
fn main() {
|
|
let args: Vec<String> = env::args().collect();
|
|
dbg!(args);
|
|
}
|