Hello, I'm new to zig and have a question regarding (official or unofficial) naming conventions:
How are function names for libraries named, with a verb as prefix?
I am building a zig gui library that is specific for Apple operating systems and am now struggling to name the ui entities the zig way.
Normally I'm totally fine with this:
Application
Window
Button
etc.
But it could be that the zig way must be a different style like:
newApplication
newWindow
newButton
etc.
or:
createApplication
createWindow
createButton
etc.
or:
zApplication
zWindow
zButton
etc.
Any hint how to do it the zig way is appreciated.
Thanks.