This commit is contained in:
agra
2026-02-11 13:03:04 +02:00
parent b8491c18f1
commit c085aeef4c
2 changed files with 1 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ Complex :: struct {
B: struct {
val: string;
};
} = .B.{val = "hello"};
} = .B.{"hello"};
}
main :: () {

View File

@@ -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");
}