https://github.com/boechat107/snake-game-rust
An elementary implementation of the Snake Game
https://github.com/boechat107/snake-game-rust
rust snake-game toy-project
Last synced: 2 months ago
JSON representation
An elementary implementation of the Snake Game
- Host: GitHub
- URL: https://github.com/boechat107/snake-game-rust
- Owner: boechat107
- Created: 2022-08-21T22:36:48.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-08-30T20:14:53.000Z (over 2 years ago)
- Last Synced: 2025-01-21T13:25:49.188Z (4 months ago)
- Topics: rust, snake-game, toy-project
- Language: Rust
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Snake Game
This project implements an elementary version of the Snake Game.

## Installation
Compile and run with [Cargo](https://doc.rust-lang.org/cargo/).
## Usage
You can run the game with:
```bash
cargo run
```The game stops if the snake hits a wall or if you press `q`.
## To Do
+ [x] Make the snake grow by eating food
+ [ ] Add different difficulty levels (making the snake move faster)