Commit 611f73a5 authored by Chris's avatar Chris
Browse files

[guessing-game] finishing touches

parent cb0cb886
Loading
Loading
Loading
Loading

README.md

0 → 100644
+8 −0
Original line number Diff line number Diff line
# rust learning

## About this project

This project is the product of me following along with the Rust Book, using Brown University's interactive version found at https://rust-book.cs.brown.edu/experiment-intro.html. This version of the book includes interactive content, such as quizzes, to be completed as you read.

Enjoy!
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ fn main() {

    let secret_number: u8 = rand::random_range(1..=100);

    println!("The secret number is {secret_number}"); // debug purposes
    // println!("The secret number is {secret_number}"); // debug purposes

    println!("Please input your guess. (Hint: the number will be between 1 and 100.)");