fix bounds + update libs

This commit is contained in:
Neemek 2026-07-11 10:13:49 +02:00
parent 828ebb23c0
commit bc58da6d49
Signed by: neemek
GPG key ID: 84FFE4D7D40AB25E
5 changed files with 59 additions and 50 deletions

View file

@ -1,5 +1,5 @@
func map(list: list[any], f: func(any)any) list[any] {
fn map(list: [any], f: fn(any) -> any) -> [any] {
out := []
i := 0