This project implements a random maze generator and solver using a tree structure in Julia.
Pull the main branch to your system by using:
git clone https://github.com/Garic152/MazeGeneration.git
Make sure to install Julia. You can do this using the following command (for Arch Linux users):
sudo pacman -S julia
For other operating systems, please use the respective installation command.
Simply launch the MazeProgram by using:
julia src/MazeGeneration.jl
Note
To test the code:
- Open Julia by typing
julia
in your terminal. - Enter the package manager by pressing
]
. - Activate the project environment by typing
activate .
. - Run the tests by typing
test
.