rust-introduction/02-guessing_game/src/main.rs

16 lines
269 B
Rust
Raw Normal View History

2024-03-25 01:27:43 +01:00
use std::io;
fn main() {
println!("Guess the number!");
println!("Please input your guess.");
let mut guess = String::new();
io::stdin()
.read_line(&mut guess)
.expect("Failed to read line");
println!("You guessed: {guess}");
}