Files
hakorune/test_async_simple.nyash
2025-08-14 05:59:08 +00:00

12 lines
237 B
Plaintext

// Simple async test with proper variable declarations
static box Main {
init { result }
main() {
local f1
nowait f1 = 42
me.result = await f1
print(me.result)
return me.result
}
}