Earlier quoted context omitted.
...and it should now be fixed!
Hey, this is awesome. Such a throwback! I noticed that some of the characters aren't what I'd expect, any reason? PRINT ASC("\") " " CHR$(92) : PRINT ASC("/") " " CHR$(47) 47 prints fine, but 92 reveals a symbol "12" in super/subscript. Some of the others are also off, e.g. the arrow sequence revealed by 10 FOR A= 1 TO 255 STEP 1 : PRINT CHR$(A) ;: NEXT shows down arrow suffering the same. Thanks, can't wait to see w…
5 MODE 1
10 IF RND(1) > 0.5 THEN PRINT CHR$(92) ;: ELSE PRINT CHR$(47) ;:
20 GOTO 10