Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
14
Task/Show-ASCII-table/True-BASIC/show-ascii-table.basic
Normal file
14
Task/Show-ASCII-table/True-BASIC/show-ascii-table.basic
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
FOR i = 32 TO 47
|
||||
FOR j = i TO i+80 STEP 16
|
||||
SELECT CASE j
|
||||
CASE 32
|
||||
LET s$ = "Spc"
|
||||
CASE 127
|
||||
LET s$ = "Del"
|
||||
CASE else
|
||||
LET s$ = CHR$(j)
|
||||
END SELECT
|
||||
PRINT USING "###: ### ": j, s$;
|
||||
NEXT j
|
||||
PRINT
|
||||
NEXT
|
||||
Loading…
Add table
Add a link
Reference in a new issue