Unladen Swallow 2009Q2 released
Unladen Swallow 2009Q2 released
Posted Jul 15, 2009 21:51 UTC (Wed) by dw (subscriber, #12017)In reply to: Unladen Swallow 2009Q2 released by iabervon
Parent article: Unladen Swallow 2009Q2 released
Relying on type checks from the C compiler hardly gets you much, it's a 1% improvement on ensuring the code is grammatically correct. I'm not sure which classes of common mistakes you're referring to, but preventing addition of integers and strings, and so on, is not my idea of a big win.
As for arbitrarily munging with module namespaces, and so on, well, you can also write inline asm from C or write jumps between function bodies. ;)
Unit/system tests that exercise code catch a hell of a lot more classes of bugs than C's idea of type checking ever could, which you should probably be doing for C projects too. The question is which language leaves you with more time to write such tests..
