2023-07-01 11:58:00 -04:00
|
|
|
' FB 1.05.0
|
|
|
|
|
|
2024-10-16 18:07:41 -07:00
|
|
|
'Using Do loop
|
|
|
|
|
Do 'Alternatively this could have a conditional, "Do While 1"
|
|
|
|
|
Print "SPAM"
|
2023-07-01 11:58:00 -04:00
|
|
|
Loop
|
2024-10-16 18:07:41 -07:00
|
|
|
|
|
|
|
|
'Using While loop
|
|
|
|
|
While 1
|
|
|
|
|
Print "SPAM"
|
|
|
|
|
Wend
|