AuteurA
Denoβ€’3y agoβ€’
1 reply
Auteur

What is the std library for making a guessing game like shown in rust?

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}");
}
Was this page helpful?