https://github.com/lpil/tetromino
A little game of Tetris!
https://github.com/lpil/tetromino
gleam tetris-engine
Last synced: about 1 year ago
JSON representation
A little game of Tetris!
- Host: GitHub
- URL: https://github.com/lpil/tetromino
- Owner: lpil
- License: apache-2.0
- Created: 2019-12-18T11:26:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-27T11:09:03.000Z (almost 6 years ago)
- Last Synced: 2025-03-24T09:21:18.765Z (about 1 year ago)
- Topics: gleam, tetris-engine
- Language: Rust
- Homepage:
- Size: 11.7 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tetromino
A little game of Tetris! Though currently without graphics I'm afraid.
To build and run this program you will need
[Gleam](https://gleam.run/getting-started/installing-gleam.html),
[Erlang](https://gleam.run/getting-started/installing-erlang.html) and the
Erlang build tool [rebar3](https://www.rebar3.org/) installed.
```sh
cd path/to/this/project
# Run the unit tests
rebar3 eunit
# Build the executable
rebar3 escriptize
# Run the program
cat input.txt | ./_build/default/bin/tetromino
```