Files
hakorune/local_tests/test_mir_nowait.hako

10 lines
181 B
Plaintext

// Async operations MIR test
static box Main {
main() {
nowait f1 = 42
local result
result = await f1
print(result)
return result
}
}