import java.util.HashMap fun HashMap.set(index: String, elem: Int?) { this.put(index, elem) } fun box(): String { val s = HashMap() s["239"] = 239 return if (s["239"] == 239) "OK" else "Fail" }