(no title)
gruffle | 3 years ago
> Errors that would be caught by static type checking are exceptionally rare when you do commerical development in dynamically typed languages.
Those kinds of errors are not rare at all.
gruffle | 3 years ago
> Errors that would be caught by static type checking are exceptionally rare when you do commerical development in dynamically typed languages.
Those kinds of errors are not rare at all.
ReflectedImage|3 years ago
Dynamically typed languages tend to be simpler and easier to use. This means on the whole they have less bugs than their static typed counter parts.
The real issue with dynamically typed languages is that their performance sucks. (That and according to this thread people not having a clue on how they are properly used. You can't just use the same development techniques as you use in a statically typed language. It's different.)
gruffle|3 years ago
And yet your comments demonstrate the opposite.
> Dynamically typed languages tend to be simpler and easier to use.
Very debatable.
> This means on the whole they have less bugs than their static typed counter parts.
Not at all.
> The real issue with dynamically typed languages is that their performance sucks
Every time you say something like this it just makes it obvious you have no idea what you're talking about. You can write almost completely typeless, highly performant, c and assembly code, while high level languages with advanced type systems are generally not the most performant.
You seen to be confused about interpreted/jit/compiled languages and static/dynamic typing - which are not the same thing.