Closed Ratakor closed 12 months ago
Good to know, thanks!
Regarding the check, I am dumbfound, cannot explain it either. 😅 Changed it to something similar to Zig's standard test runner:
if (fail_count != 0) {
std.process.exit(1);
}
Zig compiler now checks if a local variable is mutated so that variable needs to be const. On a side note I don't understand why there is this check at the end
I think
or
s should be replaced withand
s otherwise the process will always exit with 1.