Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
19
Task/Show-ASCII-table/PureBasic/show-ascii-table.basic
Normal file
19
Task/Show-ASCII-table/PureBasic/show-ascii-table.basic
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
If OpenConsole("Show_Ascii_table: rosettacode.org")
|
||||
Define r.i, c.i
|
||||
For r=0 To 15
|
||||
For c=32+r To 112+r Step 16
|
||||
Print(RSet(Str(c),3)+" : ")
|
||||
Select c
|
||||
Case 32
|
||||
Print("Spc")
|
||||
Case 127
|
||||
Print("Del")
|
||||
Default
|
||||
Print(LSet(Chr(c),3))
|
||||
EndSelect
|
||||
Print(Space(3))
|
||||
Next
|
||||
PrintN("")
|
||||
Next
|
||||
Input()
|
||||
EndIf
|
||||
Loading…
Add table
Add a link
Reference in a new issue