-
Notifications
You must be signed in to change notification settings - Fork 102
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
Why import SystemPackage
instead of import System
?
#13
Comments
Im guessing its an umbrella import around many System{Suffix} targets to be able to better separate certain platform specifics in different modules. As you can see there is also a "SystemInternals" target, which implies that System in itself is only a prefix to many more possible targets if required/desired. |
It's a workaround for current compiler limitations. If you have a binary In the future the compiler might support module namespaces, which would allow us to name the module |
I'm going to mark this as answered (i.e. closed), but feel free to ask further questions about this topic here. |
Added to the FAQ: #18 |
Why is the target named
SystemPackage
instead ofSystem
?The text was updated successfully, but these errors were encountered: