12 lines
155 B
Kotlin
12 lines
155 B
Kotlin
package foo
|
|
|
|
class Test() {
|
|
fun method(): Boolean {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
fun box(): Boolean {
|
|
var test = Test()
|
|
return test.method()
|
|
} |