Slashdot Mirror


User: ColinMacleod

ColinMacleod's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. Re:What happened to Tcl? on Sun Hires Two Key Python Developers · · Score: 1

    The inability to parse the language without simultaneously interpreting it? Perl also suffers from this problem.
    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)
  2. Ousterhout did work for Sun on Sun Hires Two Key Python Developers · · Score: 1
  3. Re:Tcl language vs. Tcl environment on Tcl/Tk 8.5.0 Released · · Score: 1

    Tcl is simple in the way that maths is simple - it starts from a small number of clean consistent abstractions which can be combined to achieve many things. People who see the possibilities of this tend to think it's easy and powerful, but many others just don't get it.