Would you use an interface that looked like this ...
# announcements
j
Would you use an interface that looked like this
Copy code
interface Something {
    fun handle(x: String) 
    fun handle(y: Int)
    fun handle(z: Any)
}