12 lines
213 B
Text
12 lines
213 B
Text
|
|
for i in range(1,100)
|
||
|
|
if i % 15 == 0 then
|
||
|
|
print "FizzBuzz"
|
||
|
|
else if i % 3 == 0 then
|
||
|
|
print "Fizz"
|
||
|
|
else if i % 5 == 0 then
|
||
|
|
print "Buzz"
|
||
|
|
else
|
||
|
|
print i
|
||
|
|
end if
|
||
|
|
end for
|