From c8cba215a52cd8cfac5a73e05c5052645702c974 Mon Sep 17 00:00:00 2001 From: zongor Date: Fri, 3 Jul 2026 18:27:45 -0700 Subject: [PATCH] quick-fix should be an expression --- compiler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler.c b/compiler.c index ade95df..b9dab30 100644 --- a/compiler.c +++ b/compiler.c @@ -968,7 +968,7 @@ void write(void) { consume(TOKEN_EQ); - variable(); + expression(); emitter->emit_write(arena, code); }