Fizz Buzz in Lobster

Published on 24 October 2025 (Updated: 24 October 2025)

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

Current Solution

for (100) i:
    let n = i + 1
    if (n % 3 == 0 and n % 5 == 0):
        print("FizzBuzz")
    elif (n % 3 == 0):
        print("Fizz")
    elif (n % 5 == 0):
        print("Buzz")
    else:
        print(n)

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