Step 1: Page 25

This commit is contained in:
2026-02-04 16:10:47 +01:00
parent 9eb53e2561
commit 0ed932a44a

View File

@@ -1,3 +1,6 @@
use std::env;
fn main() {
println!("Hello, world!");
let args: Vec<String> = env::args().collect();
println!("Arguments: {:?}", args);
}