Run »
fun main() { var x = 5 var y = 3 println(x > y) // returns true because 5 is greater than 3 }
true