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/BASIC256/show-ascii-table.basic
Normal file
14
Task/Show-ASCII-table/BASIC256/show-ascii-table.basic
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
for i = 32 to 47
|
||||
for j = i to i + 80 step 16
|
||||
begin case
|
||||
case j = 32
|
||||
s$ = "Spc"
|
||||
case j = 127
|
||||
s$ = "Del"
|
||||
else
|
||||
s$ = chr(j)
|
||||
end case
|
||||
print rjust(" "+string(j),5); ": "; ljust(s$,3);
|
||||
next j
|
||||
print
|
||||
next i
|
||||
Loading…
Add table
Add a link
Reference in a new issue