10 lines
181 B
Plaintext
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
|
|
}
|
|
} |