Ecosyste.ms: Awesome

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

https://github.com/mara-schulke/connect-four

A compact implementation of connect four written in rust.
https://github.com/mara-schulke/connect-four

cli-game connect-four rust

Last synced: 3 months ago
JSON representation

A compact implementation of connect four written in rust.

Lists

README

        

# connect-four

A compact implementation of connect four written in rust.

## Run the game

At the moment there no pre-built binaries - but you can build it locally with `cargo`.

```bash
# run the game
cargo run

# build a binary & execute it
cargo build --release
./target/release/connect-four
```