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/Nanoquery/show-ascii-table.nanoquery
Normal file
14
Task/Show-ASCII-table/Nanoquery/show-ascii-table.nanoquery
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
k = ""
|
||||
for i in range(0, 15)
|
||||
for j in range(32 + i, 127, 16)
|
||||
if j = 32
|
||||
k = "Spc"
|
||||
else if j = 127
|
||||
k = "Del"
|
||||
else
|
||||
k = chr(j)
|
||||
end
|
||||
print format("%3d : %-3s ", j, k)
|
||||
end
|
||||
println
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue