%========================================== %Do not removee this section. This will be used to load in different configurations of the maze. %You can change the numbers in these functions to test with different maze configurations. declare fun {Wall} choice 0#4 [] 1#1 [] 1#4 [] 2#1 [] 2#3 [] 2#4 [] 3#1 [] 4#3 [] 4#4 end end declare fun {Info} 5#5#c end declare fun {Button} choice 0#0#2 [] 0#3#1 end end declare fun {NumButtons} 2 end declare fun {Start} 3#4 end declare fun{Goal} 1#0 end %==========================================