Zig NEWS

Discussion on: Cool Zig Patterns - Paths in Build Scripts

 
eliax1996 profile image
Elia Migliore

Super cool! Thanks for the reply. But by not being public couldn’t the compiler inline the function and avoid producing a symbol? By the end the compiler should know that the only point where the function is called is inside that source (if you place the pub keyword that’s a different story)
Isn’t it?

Thread Thread
 
xq profile image
Felix "xq" Queißner

I'm talking about a semantic symbol/name in a scope, not what's emitted in the binary. You cannot call something else in that file concatenate for example, even if you might need it

Thread Thread
 
eliax1996 profile image
Elia Migliore

Got it! Thank you a lot for your kind replies