Not if it's s-expression-based! (laughs in smug lisp weenie)
Or, if the programming language uses infix binary operators:
Not if the programming language has evaluation order from left to right, e.g.
2+3*4
is evaluated as
(2+3)*4.
For example J uses this kind of evaluation.
Or, if the programming language uses infix binary operators:
Not if the programming language has evaluation order from left to right, e.g.
2+3*4
is evaluated as
(2+3)*4.
For example J uses this kind of evaluation.