Loops / Conditionals
for
for i=start:counter:finish
statement1
statement2
...
end
while
while condition
statement1
statement2
...
end
if else
if condition1
statement1
elseif condition2
statement2
else
statement3
end
Footer