Классы / Методы

class Greeting {
    fun sayGoodby() {
        println("Goodby!")
    }
}

val greeting = Greeting()
greeting.sayGoodby()