Loops/Infinite: Difference between revisions

m
→‎{{header|Phix}}: added syntax colouring the hard way
(Commodore BASIC: This whole section was also added in the previous update which illustrates an infinite listing loop in interpreted BASIC.)
m (→‎{{header|Phix}}: added syntax colouring the hard way)
Line 1,419:
 
=={{header|Phix}}==
<!--<lang Phix>while 1 do-->
<span style="color: #008080;">while</span> <span style="color: #004600;">true</span> <span style="color: #008080;">do</span>
puts(1,"SPAM\n")
<span style="color: #7060A8;">puts</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"SPAM\n"</span><span style="color: #0000FF;">)</span>
end while</lang>
<span style="color: #008080;">end</span> <span style="color: #008080;">while</span>
<!--</lang>-->
 
=={{header|PHP}}==
7,822

edits