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/BaCon/show-ascii-table.bacon
Normal file
14
Task/Show-ASCII-table/BaCon/show-ascii-table.bacon
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
FOR j = 0 TO 15
|
||||
FOR i = 32+j TO 127 STEP 16
|
||||
PRINT i FORMAT " %3d - ";
|
||||
SELECT i
|
||||
CASE 32
|
||||
PRINT "Spc";
|
||||
CASE 127
|
||||
PRINT "Del";
|
||||
DEFAULT
|
||||
PRINT i FORMAT "%c "
|
||||
ENDSELECT
|
||||
NEXT
|
||||
PRINT
|
||||
NEXT
|
||||
Loading…
Add table
Add a link
Reference in a new issue