peesem
12 hours ago
"not an expert in zig" but you can't even look at the documentation to find the `@tagName` builtin to do exactly the problem posed?: https://ziglang.org/documentation/0.16.0/#tagName
i can literally google "zig enum to string" and the first result is a reddit post where the given solution is `@tagName`. i'm ready to write this post off as a low-effort ad for C3
lerno
6 hours ago
C3 has an even simpler way than Zig: `Color.RED.description`.
From what I can see the example started from C++, and then comparing how each language would look building it in userland instead.
hiccuphippo
11 hours ago
If it's for debugging purposes, you can use `{any}` as the format and it will print `.BLUE`
std.debug.print("{any}\n", .{color});jb1991
12 hours ago
Agree, the post was extremely low effort.
ManuLinares
11 hours ago
[dead]