Obsidian/3-99 Research/Rust/Chapter 2 - Guessing Game.md

7 lines
340 B
Markdown

# What we did:
Created a guessing game! This file takes in a number from the user, generates
a random number, and compares the two to say whether the guess is correct,
lower, or higher. It introduces us to key concepts in Rust such as module
importing, the idea of mutability, how to define variables, and other
interesting type things.