Skip to content

Instantly share code, notes, and snippets.

@klukwist
Created October 31, 2022 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klukwist/e05871b919e074337d22851cde32c5d0 to your computer and use it in GitHub Desktop.
Save klukwist/e05871b919e074337d22851cde32c5d0 to your computer and use it in GitHub Desktop.
fun interface SamFoo {
fun bar() : String
}
val samFoo = SamFoo {
"hello world"
}
samFoo.bar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment