If-elseIf-else-endIf

Conditional branching. Syntax:

Example

  dim a,b as byte
  if a>b or a=100 then
    [..]
  elseif b=1000 then
    [..]
  elseif b=2000 and meineFunktion(a+b) then
    [..]
  else
    [..]
  endif