An open API service indexing awesome lists of open source software.

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.

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.

![Image](./guessing_game_terminal.png)