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