RosettaCodeData/Task/Show-ASCII-table/Locomotive-Basic/show-ascii-table.basic

10 lines
157 B
Plaintext

10 mode 1:defint a-z
20 for x=1 to 6
30 for y=1 to 16
40 n=16*(x-1)+y+31
50 locate 6*(x-1)+1,y
60 print using "###";n;
70 print " ";chr$(n);
80 next
90 next