mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 16:28:12 -07:00
Project test cases.
This commit is contained in:
parent
ff23b223cc
commit
23d47e55bb
2 changed files with 17 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
package example;
|
||||
|
||||
public class JavaMain {
|
||||
public static void main(String[] argv) {
|
||||
System.out.println("JavaMain calling into Kotlin");
|
||||
new KotlinClass().run();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
package example
|
||||
|
||||
class KotlinClass {
|
||||
fun run() {
|
||||
println("KotlinClass run()")
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue