https://github.com/oliverswitzer/maze_elixir
A fun, interactive CLI maze built in Elixir!
https://github.com/oliverswitzer/maze_elixir
Last synced: about 2 months ago
JSON representation
A fun, interactive CLI maze built in Elixir!
- Host: GitHub
- URL: https://github.com/oliverswitzer/maze_elixir
- Owner: oliverswitzer
- Created: 2020-08-11T21:23:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-13T06:05:00.000Z (over 4 years ago)
- Last Synced: 2025-02-15T20:23:25.608Z (4 months ago)
- Language: Elixir
- Homepage: http://oliverswitzer.com
- Size: 7.6 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MazeElixir
A fun CLI-based maze that uses `ratatouille`, a terminal UI library in elixir.
# How to play
```shell
mix run lib/app.ex
```
Add new mazes in `lib/mazes`. They adhere the following pattern:
```
"*" - wall
" " - moveable space
"s" - starting position
"E" - ending position
```