You must log in or register to comment.
Why is there no space in front of the ?. At first I didn’t even realize that this was supposed to be the ternary operator.
if (a < b) { return true; } else if (b < a) { return false; } else { return "A == B, bro" }
typed languages seeing this