forgot about the not operator 🥀

This commit is contained in:
SpookyDervish
2025-10-14 21:30:56 +11:00
parent 3d9208f0f8
commit bf0f9a9348
4 changed files with 14 additions and 109 deletions

View File

@@ -1,11 +1,3 @@
main = Func(): Int {
x: Int = 123;
if x == 123 {
x = 0;
} unless {
x = 1;
}
return x;
}