(no title)
bitwizeshift | 6 months ago
Go has a similar function declaration, and it supports anonymous functions/lambdas.
E.g. in go, an anonymous func like this could be defined as
foo := func(x int, _ int) int { … }
So I’d imagine in Zig it should be feasible to do something like
var foo = fn(x: i32, i32) i32 { … }
unless I’m missing something?
lenkite|6 months ago
See
https://github.com/golang/go/issues/59122
https://github.com/golang/go/issues/21498
vs