Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. for i = 1, 100 do
  2.    if i % 3 == 0 and i % 5 == 0 then
  3.       print "FizzBuzz"
  4.    elseif i % 3 == 0 then
  5.       print "Fizz"
  6.    elseif i % 5 == 0 then
  7.       print "Buzz"
  8.    else
  9.       print(i)
  10.    end
  11. end