# Snake 3
Play the classical snake game on your terminal or use the crate to build your own.

## Install
Either with:
```bash
cargo add snake3@=0.1.1
```
Or add to Cargo.toml:
```toml
snake3 = "=0.1.1"
```
## Play
```bash
cargo run
```
## You can use it for WASM
It uses the macroquad random module.
```bash
cargo build --release --target wasm32-unknown-unknown
```
## Docs
[https://docs.rs/snake3/0.1.0/snake3/](https://docs.rs/snake3/0.1.0/snake3/)