Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 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