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

@@ -7,7 +7,7 @@ func collatz_seq[n: i64]: i64
i := 1
while n != 1
n = collatz_num(n)
i = i + 1
i += 1
return i
func main[] : i64