Fizz Buzz in Raku

Published on 17 February 2025 (Updated: 17 February 2025)

Welcome to the Fizz Buzz in Raku page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

for 1..100 -> $i {
    if $i % 3 == 0 && $i % 5 == 0 {
        say "FizzBuzz"
    }
    elsif $i % 5 == 0 {
        say "Buzz"
    }
    elsif $i % 3 == 0 {
        say "Fizz"
    }
    else {
        say $i
    }
}

Fizz Buzz in Raku was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.