Run »
fun main() { var x = 5 var y = 3 println(x <= y) // returns false because 5 is neither less than or equal to 3 }
false