mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
9 lines
115 B
Kotlin
Vendored
9 lines
115 B
Kotlin
Vendored
fun main(args: Array<String>) {
|
|
var i = 10
|
|
++i
|
|
++(l@ i)
|
|
++(i: Int)
|
|
++(l@ (i: Int))
|
|
}
|
|
|
|
// 4 IINC |