You are viewing a single comment's thread. Return to all comments →
Rust
fn main() { println!("Hello, World."); let mut input_string = String::new(); std::io::stdin().read_line(&mut input_string); println!("{input_string}"); }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 0: Hello, World.
You are viewing a single comment's thread. Return to all comments →
Rust