Is there a site like http://yosefk.com/c++fqa/defective.html but for all other crappy languages? You know, they all have their weak points and can be ridiculed.
Name:
Anonymous2011-07-21 14:17
Python (like most other scripting languages) does not require variables to be declared, like (let (x 123) ...) in Lisp. This means that Python can't even detect a trivial typo - it will produce a program, which will continue working for hours until it reaches the typo - THEN go boom and you lost all unsaved data.