|
|
|
|
|
by zoomerang
4270 days ago
|
|
> The idea that compile-time checks is much better than runtime checks is also not obvious (Java's and other commercial languages nonsense about type safety aside - Java is no more safe than CL). Runtime checks will only trip up if you happen to hit a code path the introduces an incorrect type. This may only occur in some extremely rare scenario that you never pick up in testing. Compile time type checking allows you to prove that your program is definitely type safe, with 100% certainty. |
|