The table below lists Lua control structures.
if then else
if condition1 then
…
elseif condition2 then
… break
else
… goto location1
end
::location1::
for
Fetch all values of table 't'
for k, v in pairs(t) do