remove aoc solutions

This commit is contained in:
2026-06-07 09:36:21 +02:00
parent a9bd4fe9f9
commit 802a6d8b53
31 changed files with 4 additions and 497 deletions

View File

@@ -0,0 +1,13 @@
func main[] : i64
sum := 0
a := 0
b := 1
while a < 4000000
if a % 2 == 0
sum += a
temp := b
b += a
a = temp
io.println_i64(sum)