Series 3: Writing Your First Rust Console Applications
This series will guide you through building your first interactive console applications in Rust. You will learn how to get input from the user, process it, and display output.
Articles in this Series
- Basic Console Input and Output: Using the
std::io
module- Getting user input and displaying output.
- Handling User Input: Parsing Strings
- Parsing strings into numbers and other types.
- Working with Variables and Scope
- Understanding variable lifetimes and scope.
- Project: Building a Simple Calculator
- Applying your knowledge of variables, I/O, and operators.
- Project: Guessing Game (Part 1)
- Setting up the project and generating a random number.
- Project: Guessing Game (Part 2)
- Reading user input and providing feedback.
- Project: Guessing Game (Part 3)
- Looping and handling invalid input.
- Next Series: Control Flow - Conditionals and Loops in Rust