RosettaCodeData/Task/Maze-generation/Ada/maze-generation-3.ada
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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;