2025-08-30 07:47:21 +09:00
|
|
|
// Python getattrR OK demo (returns Result.Ok(handle))
|
|
|
|
|
// Run:
|
2025-11-06 15:41:52 +09:00
|
|
|
// NYASH_PLUGIN_ONLY=1 ./target/release/nyash --backend vm examples/py_getattrR_ok_demo.hako
|
2025-08-30 07:47:21 +09:00
|
|
|
|
|
|
|
|
static box Main {
|
|
|
|
|
main() {
|
|
|
|
|
local py, mod, r
|
|
|
|
|
py = new PyRuntimeBox()
|
|
|
|
|
mod = py.import("math")
|
|
|
|
|
r = mod.getattrR("sqrt")
|
|
|
|
|
me.console.println(r)
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|