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