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,8 @@
func main[] : i64
sum := 0
for i in 0..1000
if i % 5 == 0 || i % 3 == 0
sum += i
io.println_i64(sum)