https://github.com/leksus-04/maze-generator
:brain: Maze generator written in Haskell
https://github.com/leksus-04/maze-generator
algorithm-challenges haskell maze-generator
Last synced: about 1 month ago
JSON representation
:brain: Maze generator written in Haskell
- Host: GitHub
- URL: https://github.com/leksus-04/maze-generator
- Owner: LeKSuS-04
- License: wtfpl
- Created: 2022-07-03T18:23:48.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-05T08:26:25.000Z (about 4 years ago)
- Last Synced: 2025-02-24T15:33:25.055Z (over 1 year ago)
- Topics: algorithm-challenges, haskell, maze-generator
- Language: Haskell
- Homepage:
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Maze-generator
Simple tool for generating mazes, written in Haskell. Here's example of it's
output:

## Usage
Use `cabal` build tool for managing this project. Following command will
install all dependencies, compile and run project. More information can
be found inside [maze-generator.cabal](./maze-generator.cabal) file.
```bash
$ cabal run
```
You can configure width and height of maze in [Main.hs](app/Main.hs) file.
Unfortunately no other ways exist for configuration of behaviour of program.
As for now, I'm not planning on implementing any.
## Tools
This project was written in Haskell 8.10.2 using
* [Cabal](https://www.haskell.org/cabal/) - build tool
* [stylish-haskell](https://github.com/haskell/stylish-haskell) - code prettifier