3d8d92c7d3
- test data files renamed from *.jet to *.kt
12 lines
197 B
Kotlin
Vendored
12 lines
197 B
Kotlin
Vendored
package foo
|
|
|
|
import java.util.*
|
|
|
|
fun main(args : Array<String>)
|
|
{
|
|
val c = ArrayList<Int>()
|
|
c.add(3)
|
|
System.out.println(++(c[0]))
|
|
System.out.println((c[1])--)
|
|
System.out.println(-(c[2]))
|
|
} |