Fortinet black logo

Control structures

The table below lists Lua control structures.

Type Structure

if then else

if condition1 then

elseif condition2 then

else

end

for

Fetch all values of table 't'

for k, v in pairs(t) do

end