Guess game written on Rust
Go to file
BlitDev 142823ba0c
Add License GPL 3.0
2022-06-12 16:20:03 +07:00
images Add docs and preview 2022-06-10 12:17:18 +07:00
src Add docs and preview 2022-06-10 12:17:18 +07:00
.gitattributes Add docs and preview 2022-06-10 12:17:18 +07:00
.gitignore Initial Commit 2022-06-05 12:03:31 +07:00
Cargo.lock Rename project from "hello_cargo" to "guess_game" 2022-06-09 15:18:07 +07:00
Cargo.toml Rename project from "hello_cargo" to "guess_game" 2022-06-09 15:18:07 +07:00
LICENSE Add License GPL 3.0 2022-06-12 16:20:03 +07:00
README.MD Add docs and preview 2022-06-10 12:17:18 +07:00

README.MD

Guess Game

The game generates a secret number from 0 to 255. The player's task is to name a secret number.

Requirements

  • Rust
  • Cargo

I recommend using rustup to install Rust.

  • Install rustup on Arch Linux: sudo pacman -S rustup --needed

Building

cargo b (debug build)

The executable files will be located in target/debug.

cargo b --release (release build, what you need 😀)

The executable files will be located in target/release.

Preview