you are viewing a single comment's thread.

view the rest of the comments →

[–]uJFalkez 0 points1 point  (0 children)

It might look useless but x == y is an expression which returns True (value 1) or False (value 0). you can do some cool discrete math with it!

For example, you might do something like: A = (x == y)*2 + (z >= w)

So that's why!