You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gaybuild/operator-precedence.txt

17 lines
299 B
Plaintext

L2R: ,
R2L: = += -= *= **= /= %= &= |= ^= <<= >>=
L2R: ||
L2R: &&
L2R: == != < <= > >=
L2R: |
L2R: ^
L2R: &
L2R: << >>
L2R: + - (binary minus)
L2R: * / %
R2L: ! - (unary minus)
L2R: () [] .
line numbers are precedence values
higher values mean higher precedence