another aoc solution

This commit is contained in:
2025-12-21 14:50:09 +01:00
parent 7f93599f34
commit 0863094635
15 changed files with 77 additions and 0 deletions

View File

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