Popularity
4.0
Declining
Activity
0.0
Stable
41
1
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.
-
Binbo
Chess representation written in Erlang using Bitboards, ready for use on game servers
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
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.)