Expressions
- operators --
+ , - ,.., < , <= ,.., == , != ,.., && , || - indexing --
o[ e ] - application --
o(...) - access --
o.m(...) - dereference --
p->m(...) - in/decrement -- o++, o--
- conditional --
b?e1:e2
Assignment
var = expression - modifying --
+= .-= , ...