6 lines
97 B
Text
6 lines
97 B
Text
// version 1.0.6 (assert.kt)
|
|
|
|
fun main(args: Array<String>) {
|
|
val a = 42
|
|
assert(a == 43)
|
|
}
|