TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Why Static Typing Came Back (2022) [video]

2 pointsby plainOldTextover 1 year ago

1 comment

Rochusover 1 year ago
Interesting arguments and he apparently still prefers dynamic languages, but I was surprised that there was no mention of Smalltalk which was a rather important technology in the nineties and in fact the first dynamic OO language. The increase of compile speed might well be part of the explanation that static typing is again more popular; but the author himself mentions Delphi which had (like other Pascal compilers) a very fast compiler even in the nineties and before; and even with C++ you could get very fast compile times depending how you managed headers and templates. The advantage of better IDE support with static typing is often mentioned and a good argument, but by the end of the day it&#x27;s just much more robust to build a large software system in a statically typed language, and people got more aware of this during the last twenty years because the ever bigger applications built with JS. There was an interesting documentary about TypeScript posted on HN recently (<a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=37626689">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=37626689</a>) where the responsibles made it clear that building a system like e.g. VSCode would not have been possible with plain JS. Gradual typing might be a good thing to integrate teams with both static and dynamic typing preferences, but the result is still a dynamically typed runtime.