9 lines
165 B
Text
9 lines
165 B
Text
'Using Do loop
|
|
Do 'Alternatively this could have a conditional, "Do While 1"
|
|
Print "SPAM"
|
|
Loop
|
|
|
|
'Using While loop
|
|
While 1
|
|
Print "SPAM"
|
|
Wend
|