8 lines
80 B
Kotlin
8 lines
80 B
Kotlin
package test
|
|
|
|
object SomeObject {
|
|
fun test(a: Int) : Int {
|
|
return 0
|
|
}
|
|
}
|