Maze generation: Difference between revisions

Content added Content deleted
m (→‎prettified maze version: changed wording in the REXX section header.)
m (→‎simpler version of above: changed the wording in the REXX section header.)
Line 4,670: Line 4,670:
===simpler version of above===
===simpler version of above===
The above REXX version had a quite of bit of code to "dress up" the maze presentation,
The above REXX version had a quite of bit of code to "dress up" the maze presentation,
<br>so another slimmed down version was coded.
<br>so a slimmed down version was included here.
<lang rexx>/*REXX program generates and displays a (rectangular) solvable maze. */
<lang rexx>/*REXX program generates and displays a (rectangular) solvable maze. */
height=0; @.=0 /*default for all cells visited.*/
height=0; @.=0 /*default for all cells visited.*/