I saw this on a Commodore group page on FB and asked ChatGPT to convert it to QB64pe. Then I fixed it like usual and added a couple things.
This is one of the smallest maze makers. lol The Commodore version looks a lot different, but it's the same CHR$ number.
This is one of the smallest maze makers. lol The Commodore version looks a lot different, but it's the same CHR$ number.
Code: (Select All)
'Maze Maker - ASCII
_Title "Maze Maker - ASCII"
Randomize Timer
For t = 1 To 2000
Print Chr$(Int(205.5 + Rnd));
Next t
Sleep

