Loops/Infinite: Difference between revisions

Content added Content deleted
(Added Wren)
m (→‎{{header|Raku}}: Fix-up some Perl6 -> Raku references)
Line 1,417:
say 'SPAM';
}</lang>
In addition, there are various ways of writing lazy, infinite lists in Perl&nbsp;6Raku:
<lang perl6>print "SPAM\n" xx *; # repetition operator
print "SPAM\n", ~* ... *; # sequence operator