12 lines
172 B
Plaintext
12 lines
172 B
Plaintext
// Param-string JIT HostCall PoC (isEmpty)
|
|
box Utils {
|
|
isEmpty(s) {
|
|
return s.isEmpty()
|
|
}
|
|
}
|
|
|
|
u = new Utils()
|
|
print(u.isEmpty(""))
|
|
print(u.isEmpty("nyash"))
|
|
|