September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
11
Task/Program-termination/Gambas/program-termination-1.gambas
Normal file
11
Task/Program-termination/Gambas/program-termination-1.gambas
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Public Sub Form_Open()
|
||||
Dim siCount As Short
|
||||
|
||||
Do
|
||||
If siCount > 1000 Then Break
|
||||
Inc siCount
|
||||
Loop
|
||||
|
||||
Me.Close
|
||||
|
||||
End
|
||||
11
Task/Program-termination/Gambas/program-termination-2.gambas
Normal file
11
Task/Program-termination/Gambas/program-termination-2.gambas
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Public Sub Main()
|
||||
Dim siCount As Short
|
||||
|
||||
Do
|
||||
If siCount > 1000 Then Break
|
||||
Inc siCount
|
||||
Loop
|
||||
|
||||
Quit
|
||||
|
||||
End
|
||||
Loading…
Add table
Add a link
Reference in a new issue