would it not be possible to create a set of memory safe primitives using zig?
like an actor framework, where all types that cross boundaries are just handles/copyable, and based on messaging?
then zig would be entirely memory safe, and without defer, as long as that system is used only
basically like Swift's actors
does something like this exist? does anyone know of any discussions about this?
cuz i saw a couple actor libraries but they still work with []u8 and such, which is unsafe / relies on defer