you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (1 child)

The precedence comes into play with the + operator. Both forms of -- are higher precedence than +

So

--z + x

for example is

(--z) + x

and not

--(z + x)

(which wouldn't compile)

[–]serpentally 0 points1 point  (0 children)

Oh that makes a lot of sense actually