256
edits
Line 55: | Line 55: | ||
'''Comparison Operators''' | '''Comparison Operators''' | ||
;< | ;< | ||
:Checks if the first argument is smaller than the second. If so ''true'' is returned | :Checks if the first argument is smaller than the second. If so ''true'' is returned. | ||
;> | |||
:Checks if the first argument is bigger than the second. If so ''true'' is returned. | |||
;<= | |||
:Checks if the first argument is smaller than or equal to the second. If so ''true'' is returned. | |||
;>= | |||
:Checks if the first argument is bigger than or equal to the second. If so ''true'' is returned. | |||
;== | |||
:Checks if the first argument is equal to the second. If so ''true'' is returned. | |||
;!= | |||
:Checks if the first argument is not equal to the second. If so ''true'' is returned. | |||
'''Logic Operators''' | |||
;|| | |||
:Checks if the first argument or the second argument are true. If so ''true'' is returned. | |||
;&& | |||
:Checks if the first argument and the second argument are true. If so ''true'' is returned. | |||
=== Variables === | === Variables === |
edits