interface MyInterface {
fun funcOne() {
//optional body
print("Function with default implementation")
}
}
If the method in the interface has its own default implementation, we can use super keyword to access it.
super.funcOne()