Initial analysis: Phase 9.5 HTTP Server implementation plan

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-14 05:59:08 +00:00
parent f4f0473ccf
commit 19d4d0632f

12
test_async_simple.nyash Normal file
View File

@ -0,0 +1,12 @@
// 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
}
}