|
|
|
|
|
by alexknvl
4072 days ago
|
|
Wow, if that is so, then I am completely sold on static typing. I do not get how dynamic typing gets into the picture. Having a type system that can catch some errors at compile time but not all is better than having a type system that doesn't catch any. Having a static type system doesn't mean that you can't use dynamic typing as much as you want (e.g. in Scala you can make all variables of type `Any` and use type refinements whenever you want to call a method). |
|
EDIT: Removed comment about scala because I was confusing it with clojure. My bad.