Hello Foo
let args = std::env::args().collect::<Vec<String>>()
let name = &args[1];
println!("Hello {}", name);
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
let args = std::env::args().collect::<Vec<String>>()
let name = &args[1];
println!("Hello {}", name);