mirror of
https://gitlab.com/octospacc/MultiSpaccSDK
synced 2025-05-17 20:08:48 +02:00
15 lines
216 B
Plaintext
15 lines
216 B
Plaintext
for i = 0, i <= 100, i++ {
|
|
if i % 15 == 0 {
|
|
Sys.Console.Print("FizzBuzz")
|
|
}
|
|
elif i % 5 == 0 {
|
|
Sys.Console.Print("Buzz")
|
|
}
|
|
elif i % 3 == 0 {
|
|
Sys.Console.Print("Fizz")
|
|
}
|
|
else {
|
|
Sys.Console.Print(i)
|
|
}
|
|
}
|