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

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!

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
```

![Demo of CLI Maze App](assets/demo.gif)

Add new mazes in `lib/mazes`. They adhere the following pattern:

```
"*" - wall
" " - moveable space
"s" - starting position
"E" - ending position
```