Skip to content

Instantly share code, notes, and snippets.

@hackintoshrao
Created January 18, 2023 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hackintoshrao/8a5121c22930bada9aef219bbdac9b72 to your computer and use it in GitHub Desktop.
Save hackintoshrao/8a5121c22930bada9aef219bbdac9b72 to your computer and use it in GitHub Desktop.
sample to showcase the concept of shadowing in Rust.
fn main() {
println!("Guess the number!");
let secret_number = rand::thread_rng().gen_range(1, 101);
println!("The secret number is: {}", secret_number);
println!("Please input your guess.");
let mut guess = String::new();
io::stdin().read_line(&mut guess)
.expect("Failed to read line");
let guess: u32 = guess.trim().parse()
.expect("Please type a number!");
println!("You guessed: {}", guess);
match guess.cmp(&secret_number) {
Ordering::Less => println!("Too small!"),
Ordering::Greater => println!("Too big!"),
Ordering::Equal => println!("You win!"),
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment