September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
|
|
@ -0,0 +1,23 @@
|
|||
'Code 'stolen' from Free Basic and altered to work in Gambas
|
||||
|
||||
Public Sub Main()
|
||||
Dim i, j As Integer
|
||||
|
||||
Print " X|";
|
||||
For i = 1 To 12
|
||||
Print Format(i, "####");
|
||||
Next
|
||||
|
||||
Print
|
||||
Print "---+"; String(48, "-")
|
||||
|
||||
For i = 1 To 12
|
||||
Print Format(i, "###");
|
||||
Print "|"; Space(4 * (i - 1));
|
||||
For j = i To 12
|
||||
Print Format(i * j, "####");
|
||||
Next
|
||||
Print
|
||||
Next
|
||||
|
||||
End
|
||||
Loading…
Add table
Add a link
Reference in a new issue