|
|
|
|
|
by gruffle
1293 days ago
|
|
> I've got lots of experience in developing with both static and dynamically typed languages 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. |
|
The key points are as follows:
* Development in Dynamically Typed Languages is faster
* Dynamically typed languages use less lines of code than statically typed languages by a significant margin
* The level of bugs is the same between Dynamically typed and Statically typed code.
"You can write almost completely typeless, highly performant, c and assembly code,"
Yes, I'm sure the LOAD instructions take pictures of cats as operands via their typeless instruction sets... What in earth are you on???
"completely typeless, highly performant, c"
well once someone does that let me know. The only thing near is Javascript and that is only faster for microbenchmarks not real programs.