d98d8cfa7f
Functions are final by default in plugin mode
7 lines
82 B
Kotlin
7 lines
82 B
Kotlin
package demo
|
|
class Test() {
|
|
fun test(var i : Int) : Int {
|
|
i = 10
|
|
return i + 20
|
|
}
|
|
} |