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/EasyLang/show-ascii-table.easy
Normal file
14
Task/Show-ASCII-table/EasyLang/show-ascii-table.easy
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
numfmt 0 3
|
||||
for i range0 16
|
||||
for j = 32 + i step 16 to 127
|
||||
if j = 32
|
||||
x$ = "Spc"
|
||||
elif j = 127
|
||||
x$ = "Del"
|
||||
else
|
||||
x$ = strchar j & " "
|
||||
.
|
||||
write j & ": " & x$
|
||||
.
|
||||
print ""
|
||||
.
|
||||
Loading…
Add table
Add a link
Reference in a new issue