Skip to main content

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

  1. Basic Console Input and Output: Using the std::io module
    • Getting user input and displaying output.
  2. Handling User Input: Parsing Strings
    • Parsing strings into numbers and other types.
  3. Working with Variables and Scope
    • Understanding variable lifetimes and scope.
  4. Project: Building a Simple Calculator
    • Applying your knowledge of variables, I/O, and operators.
  5. Project: Guessing Game (Part 1)
    • Setting up the project and generating a random number.
  6. Project: Guessing Game (Part 2)
    • Reading user input and providing feedback.
  7. Project: Guessing Game (Part 3)