12 lines
161 B
Plaintext
12 lines
161 B
Plaintext
// Param-string JIT HostCall PoC (length)
|
|
box Utils {
|
|
strlen(s) {
|
|
return s.length()
|
|
}
|
|
}
|
|
|
|
s = "Hello, Nyash!"
|
|
u = new Utils()
|
|
print(u.strlen(s))
|
|
|