Difference between pages "Skip" and "Operators"

From Mesham
(Difference between pages)
Jump to navigationJump to search
m (2 revisions imported)
 
(Created page with '== Operators == #+ #- #* Multiplication #% Division #<< Bit shift to left #>> Bit shift to right #== Test for equality #!= Test for inverse equality #= Test of equa…')
 
Line 1: Line 1:
== Syntax ==
+
== Operators ==
 +
#+
 +
#-
 +
#*  Multiplication
 +
#% Division
 +
#<< Bit shift to left
 +
#>>  Bit shift to right 
 +
#==  Test for equality 
 +
#!=  Test for inverse equality
 +
#=  Test of equality on strings
 +
#< Test lvalue is smaller than rvalue
 +
#>  Test lvalue is greater than rvalue 
 +
#<=  Test lvalue is smaller or equal to rvalue
 +
#>=  Test lvalue is greater or equal to rvalue
 +
#||  Logical OR
 +
#&&  Logical AND
  
skip
+
[[Category:Core Mesham]]
 
 
== Semantics ==
 
 
 
Does nothing!
 
 
 
''Since: Version 0.41b''
 
 
 
[[Category:Sequential]]
 

Revision as of 23:56, 3 January 2010

Operators

  1. +
  2. -
    • Multiplication
  3. % Division
  4. << Bit shift to left
  5. >> Bit shift to right
  6. == Test for equality
  7. != Test for inverse equality
  8. = Test of equality on strings
  9. < Test lvalue is smaller than rvalue
  10. > Test lvalue is greater than rvalue
  11. <= Test lvalue is smaller or equal to rvalue
  12. >= Test lvalue is greater or equal to rvalue
  13. || Logical OR
  14. && Logical AND