From a5e5749e41de721c2e982f42f6ba27fc2b6d69c1 Mon Sep 17 00:00:00 2001 From: WormHeamer Date: Mon, 4 Aug 2025 00:43:51 -0400 Subject: add projection nodes, fix peephole optimization --- test.lang | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test.lang') diff --git a/test.lang b/test.lang index a1c1183..0bfcd0a 100644 --- a/test.lang +++ b/test.lang @@ -8,6 +8,6 @@ // also single-line now -proc main { - return (5 > 4) = (4 < 5) +proc main(a i64, b i64) { + return (4 + (3 * (a + 2 + b + 4) * 5) + 8) < 3 } -- cgit v1.2.3