Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 609 Bytes

luna.operators.md

File metadata and controls

25 lines (22 loc) · 609 Bytes

Luna operator precedence

operator       |  associativity
---------------|---------------
[ ] ( ) sp     |  left
++ --          |  right
! ~ + -        |  right
* / %          |  left
+ -            |  left
<< >>          |  left
< <= > >=      |  left
== !=          |  left
&              |  left
^              |  left
|              |  left
&&             |  left
||             |  left
?:             |  right
= += -=        |  right
not            |  right
,              |  left
if unless      |  left
while until