I want to check, if a number is divisible by another number:
for i = 1, 100 do if i % 2 == 0 then print( i .. \" is divisible.\") end end
for i = 1, 100 do if (math.mod(i,2) == 0) then print( i .. " is divisible.") end end