Hacker News new | ask | show | jobs
by banachtarski 4536 days ago
To be fair, C++ doesn't have dynamic statically sized arrays yet either although you can get close with constexpr (but still done at compile time) yet.

Dynarray was slated for C++14 but has been pushed since it really isn't that useful and most people can get away with using vector.