From 19d4d0632fcd76b2b152a8b13f009a9c1b1253e8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 14 Aug 2025 05:59:08 +0000 Subject: [PATCH] Initial analysis: Phase 9.5 HTTP Server implementation plan Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com> --- test_async_simple.nyash | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test_async_simple.nyash diff --git a/test_async_simple.nyash b/test_async_simple.nyash new file mode 100644 index 00000000..7bad3410 --- /dev/null +++ b/test_async_simple.nyash @@ -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 + } +} \ No newline at end of file