mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
10 lines
161 B
Java
Vendored
10 lines
161 B
Java
Vendored
package test;
|
|
|
|
class JavaClass {
|
|
public static void main(String[] args) {
|
|
Test test = new Test();
|
|
test.foo();
|
|
test.getBar();
|
|
}
|
|
}
|