Hacker News new | ask | show | jobs
by pstuart 2440 days ago
That was their itch to scratch. Please tell me about your language which has every single feature you need built into the standard library?
2 comments

Python, Java and .NET, pretty much.

There are still stuff missing, but not basic low level stuff that everyone uses daily.

It can be in the std, or it can be available as a package in your language package manager. But Go doesn't shine in dependency management either.

Minimalist standard library doesn't go well with their philosophy around dependency (“a little copying is better than a little dependency”). That's why the made so much stuff in std.

Pretty sure modules addresses the dependency management concerns, no?