12 lines
137 B
Kotlin
12 lines
137 B
Kotlin
fun main() {
|
|
println("Hello, world!")
|
|
|
|
Test().apply {
|
|
test = true
|
|
}
|
|
}
|
|
|
|
class Test {
|
|
var test: Boolean = false
|
|
}
|
|
|