Is there a way to make a system call in Zig, other than using a cImport? right now I've got it to work with something like that:
const c = @cImport({
@cInclude("stdlib.h");
});
// ...
const result: c_int = c.system(cmd);
While this works fine, I'd like to do it "the zig way", without having to import stuff from C.