RosettaCodeData/Task/Maze-generation/Ada/maze-generation-3.ada
2023-07-01 13:44:08 -04:00

8 lines
213 B
Ada

with Mazes;
procedure Main is
package Small_Mazes is new Mazes (Height => 8, Width => 11);
My_Maze : Small_Mazes.Maze_Grid;
begin
Small_Mazes.Initialize (My_Maze);
Small_Mazes.Put (My_Maze);
end Main;