Files
hakorune/local_tests/test_async_simple.hako

12 lines
237 B
Plaintext
Raw Permalink Normal View History

// 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
}
}