10 lines
231 B
Raku
10 lines
231 B
Raku
# fizzbuzz
|
|
# Multiples of three output fizz, multiple sof five output buzz, and multiples of both output fizzbuzz
|
|
|
|
for ^100 {
|
|
print $_ + 1 ~ ":";
|
|
print "Fizz" if ($_ + 1) %% 3;
|
|
print "Buzz" if ($_ + 1) %% 5;
|
|
print "\n";
|
|
}
|