Resolve a conflict by any means necessary

Report a typo

Resolve the conflict in any manner so that the code prints new line something else to the console.

Write a program in Kotlin
interface PrinterInterface {
fun printSomething() = print("something")
fun printSomethingElse() = print("something else")
}

interface NewLinePrinterInterface {
fun printSomething() = println("new line something")
fun printSomethingElse() = println("new line something else")
}

class MultiPrinterClass : PrinterInterface, NewLinePrinterInterface {
override fun printSomething() = print("classy something")

override fun printSomethingElse() {
// Change only the following line
super.printSomethingElse()
}
}
___

Create a free account to access the full topic