Skip to content

Instantly share code, notes, and snippets.

@adam-arold
Created September 11, 2017 16:41
Show Gist options
  • Save adam-arold/cf6b7c6eb5ff4c9e20476a8a3d7b112c to your computer and use it in GitHub Desktop.
Save adam-arold/cf6b7c6eb5ff4c9e20476a8a3d7b112c to your computer and use it in GitHub Desktop.
JavaInterop
class JavaInterop {
fun helloJava() {
KotlinInterop().helloJava()
}
fun helloKotlin() {
println("Hello from Kotlin!")
}
companion object {
@JvmStatic
fun createInstance() = JavaInterop()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment