September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
12
Task/Loops-Break/Gambas/loops-break.gambas
Normal file
12
Task/Loops-Break/Gambas/loops-break.gambas
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
Public Sub Main()
|
||||
Dim byNo As Byte
|
||||
|
||||
Do
|
||||
byNo = Rand(0, 19)
|
||||
Print byNo;;
|
||||
If byNo = 10 Then Break
|
||||
byNo = Rand(0, 19)
|
||||
Print byNo;;
|
||||
Loop
|
||||
|
||||
End
|
||||
Loading…
Add table
Add a link
Reference in a new issue