From 866d14b5150c356718916fe8b7cfac45aea283ce Mon Sep 17 00:00:00 2001 From: WormHeamer Date: Sun, 10 Aug 2025 23:05:24 -0400 Subject: remove some debug printfs --- test.lang | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'test.lang') diff --git a/test.lang b/test.lang index 4df4f82..b409560 100644 --- a/test.lang +++ b/test.lang @@ -1,12 +1,15 @@ -func main(a, b i64) i64 { - let x i64, y bool - if true { - let t = a - a := b - b := t - x := 3 - } else { - //x := 2 +/*func main(a, b i64) i64 { + let x i64 = 0, y bool = true + if a <> 0 { + x := 1 } - return x + return x + a +}*/ + +func one i64 { + return 1 +} + +func main(a, b i64) i64 { + return a & a & b & a & b & b & b } -- cgit v1.2.3