hi I made a thing if anyone finds it useful the better :)))
#flag -- simple command line argument parsing
1 messages · Page 1 of 1 (latest)
I like it, looks quite simple! Why did you use .ty and not .type? Or is that a keyword in Zig
type isn’t a keyword, it’s a primitive type, so you can use it as a field without @"" syntax
Glad to see another Ada_Case user
I discovered it through the worst C formatting convention (GNU), but it makes so much sense, its just snake case but for types
@harsh igloo essentially this, you could use it, but it would be unescesary, ty is pretty common for types otherwise, so it seems like an okay compromise)
I was saying you don’t need the @"" syntax when you use it as a field
oh okay!