-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import segregation #3
Comments
use "a.zig"; This would import everything into the global namespace. use "a.zig" as a; To use a.zig symbols with this style, use |
How about this instead for an explicit namespace:
That looks more like you're creating a symbol and initializing it. The |
I like that. It's more consistent with typedef syntax.
|
|
use
toimport
?The text was updated successfully, but these errors were encountered: