Popularity
4.3
Stable
Activity
0.0
Stable
48
2
1
Programming language: Elixir
License: MIT License
Tags:
Games
mines alternatives and similar packages
Based on the "Games" category.
Alternatively, view mines alternatives based on common mentions on social networks and blogs.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of mines or a related project?
Popular Comparisons
README
Mines
A minesweeper clone in the terminal, written in Elixir.
[Screenshot](screenshot.png)
I built this to learn Elixir and as an exercise in test-driven development.
Build
Mines is meant to be run as a standalone BEAM executable:
mix escript.build
Play
To play the game with default settings, run:
./mines
Currently, you can also pass two arguments to the game:
./mines --size 10 --mines 12
Controls
- The arrow keys move the cursor. The cursor wraps around the edges of the board.
- The space bar reveals a cell.
- The 'b' key toggles marking a cell as a bomb.
- Control-C exits the game. (You'll probably need to call
reset
afterwards.)