mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
6 lines
142 B
Plaintext
6 lines
142 B
Plaintext
fun box() : String {
|
|
val a = #(1, "2")
|
|
if (a._1 != 1) return "Fail 1: ${a._1}"
|
|
if (a._2 != "2") return "Fail 1: ${a._2}"
|
|
return "OK"
|
|
} |