|
|
|
|
|
by Elucalidavah
261 days ago
|
|
> how all the popular dynamic languages have slowly become statically typed Count the amount of `Any` / `unknown` / `cast` / `var::type` in those codebases, and you'll notice that they aren't particularly statically typed. The types in dynamic languages are useful for checking validity in majority of the cases, but can easily be circumvented when the types become too complicated. It is somewhat surprising that dynamic languages didn't go the pylint way, i.e. checking the codebase by auto-determined types (determined based on actual usage). |
|