Files
kotlin-fork/plugins/uast-kotlin/testData/Simple.kt
T
2016-04-08 15:39:58 +03:00

8 lines
147 B
Kotlin
Vendored

class Simple {
val a: String = "text" + "other" + "text"
val b = listOf("A")
fun test() {
System.out.println(5.0f / 2)
}
}