Loops/Infinite: Difference between revisions

(Added PicoLisp)
Line 333:
=={{header|Prolog}}==
<lang prolog>repeat, write('SPAM'), nl, fail.</lang>
 
=={{header|PureBasic}}==
{{works with|PureBasic|4.41}}
<lang PureBasic>Repeat
PrintN("SPAM")
ForEver</lang>
 
=={{header|Python}}==
Anonymous user