The statement
x = a = b
is equivalent to, and much more concise than, the statement
if a = b then x = true else x = false
The parentheses, e. g.
x = (a = b)
only set off the statement, and are not necessary. So, what it's saying is evaluate a = b and assign the result to x.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.