Jump to content

Loops/Infinite: Difference between revisions

no edit summary
m (→‎{{header|Phix}}: added syntax colouring the hard way)
No edit summary
Line 373:
120 LOOP</lang>
 
==={{header|QB64}}===
<lang QB64>'Using Do loop
Do 'Alternatively this could have a conditional, "Do While 1"
Print "SPAM"
Loop
 
'Using While loop
While 1
Print "SPAM"
Wend</lang>
 
==={{header|Yabasic}}===
Cookies help us deliver our services. By using our services, you agree to our use of cookies.