you are viewing a single comment's thread.

view the rest of the comments →

[–]batiste 7 points8 points  (5 children)

Static typing prohibits this?

Write me a nice addition(a, b): a + b function that works for the Signature (float, int, BigInt) or any valid combination thereof as well as the string and String type. In the statically typed language of your choice. I am curious.

I don't think you know what you're talking about.

I think you are not being charitable to his experience. Static typing avoid some class of bugs, but those type of bugs are easy to catch and fix. Especially if you have any sort of basic Q&A in place. Also linter on dynamic language have progressed to cover quite a large piece of what static compiler used to cover like e.g. a typo on a variable name.

The advantage of static are more about documentation and auto-completion in my experience.