RosettaCodeData/Task/Loops-Infinite/Raku/loops-infinite-2.raku
2023-07-01 13:44:08 -04:00

3 lines
136 B
Raku

print "SPAM\n" xx *; # repetition operator
print "SPAM\n", ~* ... *; # sequence operator
map {say "SPAM"}, ^Inf; # upto operator