9 lines
117 B
Kotlin
Vendored
9 lines
117 B
Kotlin
Vendored
|
|
fun testFun(i: Int): String = i.toString()
|
|
|
|
val testPropVal = 42
|
|
|
|
var testPropVar = 42
|
|
|
|
@JvmField
|
|
val testField = 42 |