Letβs say weβre writing a function to check if two integers are equal. Pretty simple, right? We can just compare them with the == and return true or false. So far, so good. object Equal { println(2 == 3) // prints false } But what if we want to ...