Skip to content

Instantly share code, notes, and snippets.

@heronrs
Created June 17, 2017 15:54
Show Gist options
  • Save heronrs/501ae5f4217ff251c4bad5ace6096212 to your computer and use it in GitHub Desktop.
Save heronrs/501ae5f4217ff251c4bad5ace6096212 to your computer and use it in GitHub Desktop.
rust
fn main() {
println!("Guessing game project!");
let secret_number = rand::thread_rng().gen_range(1, 101);
println!("Secret number {}", secret_number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment