Loops/Infinite: Difference between revisions

Content added Content deleted
(Rapira Infinite Loop)
Line 1,741: Line 1,741:
print "SPAM\n", ~* ... *; # sequence operator
print "SPAM\n", ~* ... *; # sequence operator
map {say "SPAM"}, ^Inf; # upto operator</lang>
map {say "SPAM"}, ^Inf; # upto operator</lang>

=={{header|Rapira}}==
<lang Rapira>while 1 do
output: "SPAM"
od</lang>


=={{header|REBOL}}==
=={{header|REBOL}}==