3. Guessing Game
Let's start off with a hands-on project! We'll learn some new concepts by using them in a real program.
Process a Guess
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);
}
Last updated