Menu
×
×
Correct!
Exercise:Fill in the missing part to compare the two variables:
val x = 10
val y = 9
println(x > y)
val x = 10
val y = 9
println(x < y)
Not CorrectClick here to try again. Correct!Next ❯val x = 10 val y = 9 println(xy) |