Comment Re:What happened to Tcl? (Score 1) 173
Wrong, Perl parses and byte-compiles the whole program on startup, while Tcl only parses and byte-compiles each block the first time it's executed, so a rarely-executed piece of code might have lurking errors. (Apart from that, Tcl is far cleaner, more readable and consistent than Perl though)The inability to parse the language without simultaneously interpreting it? Perl also suffers from this problem.