From 3f5cb6eec8df15ff3a9ef45bf881672672fe0bb0 Mon Sep 17 00:00:00 2001
From: Rowan Torbitzky-Lane <rowan.a.tl@protonmail.com>
Date: Tue, 18 Mar 2025 22:02:37 -0500
Subject: [PATCH] before adding random number gen

---
 guessing_game/src/main.rs | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/guessing_game/src/main.rs b/guessing_game/src/main.rs
index 14ff42b..4dcb3cf 100644
--- a/guessing_game/src/main.rs
+++ b/guessing_game/src/main.rs
@@ -14,10 +14,7 @@ fn main() {
 
     io::stdin()
         .read_line(&mut guess)
-        .expect("Failed to read line!");
+        .expect("Failed to read line!"); // Use this if truly want to error out. Use pattern matching otherwise
 
     println!("You guessed: {}", guess);
-
-    // Ended at start of Recieving user input in ch2
-    // https://rust-book.cs.brown.edu/ch02-00-guessing-game-tutorial.html#receiving-user-input
 }