Run »
fun main() { var myBool = true println(!myBool) // returns false because the ! (not) operator reverses the result }
false