Maze generation: Difference between revisions

Content added Content deleted
m (→‎{{header|REXX}}: changed version name. -- ~~~~)
m (→‎simpler version of above: changed the comment in the 2nd REXX section header. -- ~~~~)
Line 3,865: Line 3,865:


===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>that another slimmed down version was coded.
<br>so another slimmed down version was coded.
<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.*/