Fizz Buzz in Rexx

Published on 22 November 2025 (Updated: 22 November 2025)

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

Current Solution

do i = 1 to 100
    if i // 15 == 0 then
        say "FizzBuzz"
    else if i // 3 == 0 then
        say "Fizz"
    else if i // 5 == 0 then
        say "Buzz"
    else
        say i
end

Fizz Buzz in Rexx 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.