8 lines
101 B
Kotlin
8 lines
101 B
Kotlin
package demo
|
|
|
|
class Test() {
|
|
fun test(i: Int): Int {
|
|
i = 10
|
|
return i + 20
|
|
}
|
|
} |