12 lines
248 B
Plaintext
Vendored
12 lines
248 B
Plaintext
Vendored
public static class Simple {
|
|
public fun <init>()
|
|
|
|
public immutable var a: String = "text" + "other" + "text"
|
|
|
|
public immutable var b: List<String> = listOf("A")
|
|
|
|
public fun test(): Unit {
|
|
System.out.println(5.0 / 2)
|
|
}
|
|
}
|