Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror

Comment Re:What happened to Tcl? (Score 1) 173

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)
Programming

Submission + - Tcl/Tk 8.5.0 Finally Released

dkf writes: "OSNews reports that Tcl/Tk 8.5 has been released for all major platforms after 5 years of development. There are many new goodies in it, including significant speedups through an advanced bytecode engine, stronger localization of applications, integrated arbitrary-precision arithmetic, a whole bunch of brand new skinnable widgets, anti-aliased text support on all platforms, and a new code module management system to make maintenance of installations a snap.

A lot more in-depth information about the features of both this release and Tcl/Tk in general is available at both the official Tcl/Tk website and in Mark Roseman's blog."

Slashdot Top Deals

The world will end in 5 minutes. Please log out.

Working...