blob: 7fe750fc4ec0e620d0e1eaf8d224dcf2570bb46c [file] [log] [blame]
operator fun String.unaryPlus() : String {
if (this == "") {
return "done"
}
return +""
}
fun box() : String = if (+"11" == "done") "OK" else "FAIL"