11 lines
176 B
Text
11 lines
176 B
Text
iterate (x; [1...100])
|
|
{
|
|
if (x % 15 == 0)
|
|
"FizzBuzz"!
|
|
else if (x % 3 == 0)
|
|
"Fizz"!
|
|
else if (x % 5 == 0)
|
|
"Buzz"!
|
|
else
|
|
x!;
|
|
};
|