|
|
|
|
|
by MaxBarraclough
1157 days ago
|
|
> Nobody code without a type system. A small number do. Assembly languages are generally untyped. The Forth language is also untyped. > At build time you catch bugs that would appear later at runtime. Which is more costly to fix later. Generally agree. Programmers proficient in Haskell or Ada tend to consider types to be integral to their development process. The real question is whether this is a good tradeoff against development velocity, for your given project. Neither language markets itself for rapid application development, instead they tend to emphasise that the language aids with correctness and the ability to reason about code's behaviour. |
|