finally add real logical operators

This commit is contained in:
2025-12-26 11:52:23 +01:00
parent 270386da95
commit db2e639cc8
16 changed files with 96 additions and 49 deletions

View File

@@ -2,6 +2,6 @@ func main[] : i64
let sum = 0
for i in 0..1000
if i % 5 == 0 | i % 3 == 0
if i % 5 == 0 || i % 3 == 0
sum = sum + i
io.println_i64(sum)