9 lines
191 B
Text
9 lines
191 B
Text
for i = 32 to 47
|
|
for j = i to i + 80 step 16
|
|
s$ = chr$(j)
|
|
if j = 32 s$ = "Spc"
|
|
if j = 127 s$ = "Del"
|
|
print str$(j, "#####"), ": ", s$;
|
|
next j
|
|
print
|
|
next i
|