Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Remove quotes from equals and unequals signs, to make it consistent with other statements

...


Code Block
 >  


greater than


Code Block
 >= 


greater than or equals


Code Block
 <  


less than


Code Block
 <= 


less than or equals


Code Block
 '==' 


equals


Code Block
 '!=' 


unequals

If statements can also be nested, e.g.

...