desguar += and -=

This commit is contained in:
2026-06-06 18:53:11 +02:00
parent 535364931e
commit 22874181cd
32 changed files with 185 additions and 146 deletions

View File

@@ -4,8 +4,8 @@ func main[] : i64
i := 1
while true
if math.is_prime(i)
found = found + 1
found += 1
if found == 10001
io.println_i64(i)
break
i = i + 1
i += 1