Contact: aviboots(AT)netvision.net.il
36,611 questions
47,864 answers
573 users
n = 2 ^ 4 print(n) --[[ run: 16.0 --]]
local i = 2 while (i < 10) do print(i ^ 2) -- ^ Exponent Operator i = i + 2 end --[[ run: 4.0 16.0 36.0 64.0 --]]