1
0
Fork 0
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:
Cedric Beust 2016-02-04 21:59:17 +04:00
parent ff23b223cc
commit 23d47e55bb
2 changed files with 17 additions and 0 deletions

View file

@ -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();
}
}

View file

@ -0,0 +1,9 @@
package example
class KotlinClass {
fun run() {
println("KotlinClass run()")
}
}