Loops/Infinite: Difference between revisions

Content added Content deleted
m (→‎{{header|Phix}}: added syntax colouring the hard way)
No edit summary
Line 373: Line 373:
120 LOOP</lang>
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}}===
==={{header|Yabasic}}===