Re: Larry Wall, on Tcl
- From: "tom.rmadilo" <tom.rmadilo@xxxxxxxxx>
- Date: Sun, 9 Dec 2007 00:28:55 -0800 (PST)
On Dec 7, 9:59 am, Bryan Oakley <oak...@xxxxxxxxxxxxxxxxxxxx> wrote:
State of the Onion,http://www.perl.com/pub/a/2007/12/06/soto-11.html
After reading the article, I think it is worth pointing out a few
facts.
First is that Perl is such a poor language that it needs to be
reinvented. A not so subtle admission of a system which hasn't stood
the test of time.
Second: what is this guy talking about? Apparently he bought in to a
number of idiotic theories over the years and slowly discovered they
were idiotic. Most of these were associated with new-age scripting
languages. Perl6 sounds like a therapy session for some dude with a
lot of bad experiences.
I found exactly one example of a concrete recommendation for Perl6:
being able to support for 1..Inf.
This is described as being able to work with infinite lists! He admits
that you need to find some way to actually exit before Inf is reached,
although I disagree. Given a healthy computer and electricity, there
should be no problem. The usual glitch is dumb humans which see no
reason to do a for 1..Inf.
In Tcl one way to achieve this holy grail is something almost any
Tcl'er could discover by pure accident:
for {set i 1} {$i > 0} {incr i} {
....
}
See, Tcl can work for infinite lists!
Of course Perl could handle this so much faster, you might actually
reach Inf, who knows.
.
- Follow-Ups:
- Re: Larry Wall, on Tcl
- From: Óscar Fuentes
- Re: Larry Wall, on Tcl
- From: Bryan Oakley
- Re: Larry Wall, on Tcl
- References:
- Larry Wall, on Tcl
- From: Bryan Oakley
- Larry Wall, on Tcl
- Prev by Date: NexTk (a call for Win32, Mac, and QNX developers)
- Next by Date: A NexTk Demo (an image viewer)
- Previous by thread: Re: Larry Wall, on Tcl
- Next by thread: Re: Larry Wall, on Tcl
- Index(es):
Relevant Pages
|