编辑代码

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