08-08-2025, 10:18 PM
Pretty awesome guys.
Here is a different tiny one.
Here is a different tiny one.
Code: (Select All)
'Maze - Tiny
'Mod from Basic Programming's FB group
_Title "Maze - Tiny - Esc to quit - Other keys for a new one."
Randomize Timer
Do
For t = 1 To 2000
Print Chr$(220 + Rnd(1));
Next t
Sleep
If InKey$ = Chr$(27) Then End
Cls
Loop

