|
|
|
|
|
by hacker_9
3311 days ago
|
|
Just going to point out here that you are conflating Javascript problems with dynamic language problems. Try Clojure, a well designed dynamic language, and you'll find you are a lot more productive with it than any statically typed language. Indeed over the weekend I was able to design and build a GUI DSL, layout system, model-view databinding, command event system, and serialisation/deserialisation logic for a side project of mine. This sort of stuff would have taken weeks of effort in a static language. |
|
However, I don't see why this would be true:
> This sort of stuff would have taken weeks of effort in a static language.
I've also written plenty of things in typed languages, and in many ways they can be faster to develop in than dynamic languages. Of course, you do need to change the way you program a bit to really take advantage of types.
I think the main advantage Clojure has over most typed languages is macros, but there is work being done to rectify even that.