Files
hakorune/examples/jit_map_has_int_keys.hako

13 lines
172 B
Plaintext

// Param-map JIT HostCall PoC (has)
box Utils {
has12(m) {
return m.has(1) + m.has(2)
}
}
m = new MapBox()
m.set(1, 10)
u = new Utils()
print(u.has12(m))