ASCII Table One-Liner: Difference between revisions

From Bitchin100 DocGarden
Jump to navigationJump to search
m (ASCII-Table One-Liner moved to ASCII Table One-Liner: Incorrect Punctuation)
 
(3 intermediate revisions by 3 users not shown)
Line 2: Line 2:


<pre>
<pre>
1 FORY=1TO7:FORX=0TO31:PRINTCHR$(Y*32+X);:NEXT:PRINT:NEXT:FORZ=-1TO0:Z=INKEY$="":NEXT:MENU
FORY=1TO7:FORX=0TO31:C=Y*32+X:IFC=127THENPRINT:NEXTY:ELSEPRINTCHR$(C);:NEXT:PRINT:NEXT:Z$=INPUT$(1):MENU
</pre>
</pre>
 
 
 
== Output ==
 
[[Image:ASCII-OUT.gif]]

Latest revision as of 12:17, 13 August 2011

This program displays the Model 100/102 printable character set.

FORY=1TO7:FORX=0TO31:C=Y*32+X:IFC=127THENPRINT:NEXTY:ELSEPRINTCHR$(C);:NEXT:PRINT:NEXT:Z$=INPUT$(1):MENU


Output

ASCII-OUT.gif