3 lines
136 B
Raku
3 lines
136 B
Raku
print "SPAM\n" xx *; # repetition operator
|
|
print "SPAM\n", ~* ... *; # sequence operator
|
|
map {say "SPAM"}, ^Inf; # upto operator
|