RosettaCodeData/Task/FizzBuzz/Wren/fizzbuzz.wren

12 lines
237 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for (i in 1..100) {
if (i % 15 == 0) {
System.print("FizzBuzz")
} else if (i % 3 == 0) {
System.print("Fizz")
} else if (i % 5 == 0) {
System.print("Buzz")
} else {
System.print(i)
}
}