You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the core library should be very minimal and provide only the basics needed to write the hello world program. More high level things like containers, filesystem access, etc. should be separate modules, also they are only downloaded and linked in as needed. This is intended to avoid huge library bloat that happens to so many libraries and even language standard libraries. It should be simple to use existing libraries, so much so that you shouldn't even notice a difference from using the core standard library.
The text was updated successfully, but these errors were encountered:
Standard IO streams pose a problem. I don't want to make the mistake of baking in a bad standard stream implementation in the core standard library. Maybe those can just be really low-level structs and then if you want something better you can import the module of your choice and use an adaptor or something.
I think the core library should be very minimal and provide only the basics needed to write the hello world program. More high level things like containers, filesystem access, etc. should be separate modules, also they are only downloaded and linked in as needed. This is intended to avoid huge library bloat that happens to so many libraries and even language standard libraries. It should be simple to use existing libraries, so much so that you shouldn't even notice a difference from using the core standard library.
The text was updated successfully, but these errors were encountered: