8 lines
147 B
Kotlin
Vendored
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)
|
|
}
|
|
} |