RosettaCodeData/Task/Show-ASCII-table/EasyLang/show-ascii-table.easy
2023-07-01 13:44:08 -04:00

14 lines
230 B
Text

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 ""
.