"Zig doesn’t have lambdas" This surprises me (as a C++ guy). I use lambdas everywhere. What's the standard way of say defining a comparator when sorting an array in Zig?
Normal function declarations. This is indeed a point which makes Zig inflexible.
fn add(x: i32, i32) i32
they have said perma-goodbye to lambdas. They should have at-least considered fn add(x: i32, i32): i32