Skip to content

Instantly share code, notes, and snippets.

@klukwist
Created October 31, 2022 15:00
Show Gist options
  • Save klukwist/ff9d3ec65833f522197515d0ac02c17b to your computer and use it in GitHub Desktop.
Save klukwist/ff9d3ec65833f522197515d0ac02c17b to your computer and use it in GitHub Desktop.
interface RegularFoo {
fun bar() : String
}
val regularFoo = object : RegularFoo {
override fun bar(): String {
return "hello world"
}
}
regularFoo.bar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment