|
|
|
|
|
by frou_dh
877 days ago
|
|
> The point of static typing is to allow an compiler to compile your code for performance reasons and nothing else. The relevant term is Type Checker. Static Type Checker: Something that checks types statically (i.e. by inspecting the source code without running it). Doesn't necessarily say anything about compilation, execution strategy, or indeed if the user program will ever be run at all. |
|
The majority of bugs in code are about the behavior of the code rather than the typing. You require unit tests or some other more advanced technique.