2017-12-22 03:25:39 +00:00
|
|
|
use std::io;
|
|
|
|
|
2016-08-31 02:49:38 +00:00
|
|
|
fn main() {
|
2017-12-22 03:25:39 +00:00
|
|
|
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);
|
2016-08-31 02:49:38 +00:00
|
|
|
}
|