Created
June 17, 2017 15:54
-
-
Save heronrs/501ae5f4217ff251c4bad5ace6096212 to your computer and use it in GitHub Desktop.
rust
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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