▲ | wild_egg 3 days ago | |
CL is strongly typed but not statically typed. The compiler generally doesn't complain ahead of time that your function is going to do math on a string because it was called incorrectly. Typically a runtime condition will be signalled when it hits that point and you can sort it out from there. Coalton moves that to the compilation step so you get an error back the instant you send the form to the REPL. |