Skip to content

Instantly share code, notes, and snippets.

@adam-arold
Created September 11, 2017 16:40
Show Gist options
  • Save adam-arold/085d8a371f87eaca5cf28cab1aef5ee5 to your computer and use it in GitHub Desktop.
Save adam-arold/085d8a371f87eaca5cf28cab1aef5ee5 to your computer and use it in GitHub Desktop.
KotlinInterop
public class KotlinInterop {
public void helloJava() {
System.out.println("Hello from Java!");
}
public void helloKotlin() {
JavaInterop.createInstance().helloKotlin();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment