https://github.com/tanvir1017/guessing-game-rust
The guessing game program will ask for user input, process that input, and check that the input is in the expected form. To start, it’ll allow the player to input a guess of number.
https://github.com/tanvir1017/guessing-game-rust
basic-concept control-flow data-types gusseing-game rust standard-library-modules
Last synced: 9 months ago
JSON representation
The guessing game program will ask for user input, process that input, and check that the input is in the expected form. To start, it’ll allow the player to input a guess of number.
- Host: GitHub
- URL: https://github.com/tanvir1017/guessing-game-rust
- Owner: tanvir1017
- Created: 2024-11-04T06:57:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-04T19:14:58.000Z (over 1 year ago)
- Last Synced: 2025-03-30T14:35:31.645Z (about 1 year ago)
- Topics: basic-concept, control-flow, data-types, gusseing-game, rust, standard-library-modules
- Language: Rust
- Homepage:
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# A Guessing Game With Rust
### Summary
This project was a hands-on way to introduce you to many new Rust concepts: let, match, functions, the use of external crates, and more. In the next few chapters, you’ll learn about these concepts in more detail. Chapter 3 covers concepts that most programming languages have, such as variables, data types, and functions, and shows how to use them in Rust. Chapter 4 explores ownership, a feature that makes Rust different from other languages. Chapter 5 discusses structs and method syntax, and Chapter 6 explains how enums work.
