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

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

Awesome Lists containing this project

README

        

# Snake Game

This project implements an elementary version of the Snake Game.

![Playing the game](./play-min.gif)

## 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)