threads.parallel(1, function(no) for i = 1, 100000 do print(i) if i % 3 == 0 then print("Fizz") end if i % 5 == 0 then print("Buzz") end end end)