From c085aeef4ccdfeb42ada78f8411ada434e65c40f Mon Sep 17 00:00:00 2001 From: agra Date: Wed, 11 Feb 2026 13:03:04 +0200 Subject: [PATCH] ... --- examples/03-structs.sx | 2 +- examples/18-conditions.sx | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/examples/03-structs.sx b/examples/03-structs.sx index a088c52..c6b9e75 100644 --- a/examples/03-structs.sx +++ b/examples/03-structs.sx @@ -9,7 +9,7 @@ Complex :: struct { B: struct { val: string; }; - } = .B.{val = "hello"}; + } = .B.{"hello"}; } main :: () { diff --git a/examples/18-conditions.sx b/examples/18-conditions.sx index f6bdfd2..bb380df 100644 --- a/examples/18-conditions.sx +++ b/examples/18-conditions.sx @@ -8,11 +8,6 @@ main :: () { print("contained"); } - if 0 <= x <= 100 and 0 <= y <= 100 { - print("contained"); - } - - if 1000 > x > -100 and 0 <= y <= 100 { print("contained"); }