mirror of
https://github.com/Fare-spec/cours.git
synced 2025-12-08 03:00:37 +00:00
8 lines
130 B
Python
8 lines
130 B
Python
import maze_creator as mc
|
|
|
|
|
|
lab = mc.Labyrinth(10,10)
|
|
lab.set_start_end((0,0),(100,100))
|
|
lab.generate_maze()
|
|
print(lab.__str__())
|