Run »
fun main() { val x = 10 val y = 9 println(x > y) // Returns true, because 10 is greater than 9 }
true