What is Perl 6? 343
chromatic writes "Perl.com has a new article entitled What is Perl 6?. It analyzes the changes to the language in light of the good and bad points of Perl 5 and provides new information about the current state of the project: Perl 6 exists, you can write code in it today, and it's more consistent and easier to use than Perl 5."
What is Perl 6? (Score:2, Insightful)
Yeah, I know I'm late to get on this but
Re:What is Perl 6? (Score:5, Interesting)
So is Perl 6 going to bring about a Perl revival, or is it (as I suspect) going to fall flat when faced with Perl 5's quietly entrenched support and PHP's proclaimed grip on new uptakers? TFA mentions the reasons for cutting backwards compatibility (or at least reducing its priority) far too often for me to be optimistic there.
I think Perl 6 will catch on, eventually... but it's going to be more of an alternative language, not an upgrade, to Perl 5 for a long time yet.
Re:What is Perl 6? (Score:2, Interesting)
I'm sure if your employer starts needing perl solutions, they'll buy you a book. It's not that hard to pick up if you come from a programming background. I once got tasked to modify a perl script, and was able to learn enough perl to get the job done within an afternoon. Been a fan of it ever since!
Re:What is Perl 6? (Score:4, Insightful)
But if you need to do a longer project, pick up Programming Perl and read it (from front to end). Without that book, Perl can just be extremely weird, after reading the book it at least makes sense in its own world, no matter how unconnected that world seems to be to the rest of the universe :-)
Err? (Score:3, Insightful)
Perl6 is not really here yet. Read the last page. Author doesnt come out and state it directly, but the current best implementation runs on Haskell.
I dunno, somehow I dont think the take-aw
Re:What is Perl 6? (Score:3, Insightful)
I suspect your manager (if s/he is a typical manager) hasn't even heard of Perl 6.
Perl 6 is still vapor at this point. It's probably still a year or two away (and may be perpetually, unfortuneately). Yes, there are cool ideas there and you might want to be familiar with some of the highlevel concepts. But if you really want to study some new languages that will
Re: (Score:3, Informative)
unfortunately (Score:5, Funny)
You can never be told what Perl is.
You just have to see it for yourself.
sorry, i just had to.
Re:unfortunately (Score:5, Funny)
You just have to see it for yourself.
Is this [thiesen.org] what you saw?
Re:unfortunately (Score:3, Funny)
What is perl? (Score:5, Funny)
Don't hurt me
No more
TFA (Score:2)
No language that I like better (Score:5, Interesting)
Then I met Perl (5.003). What a difference it made! The data structures were built in, and on top of that, it was EASY to nest structures to build complex data types. It was like having a semester of Data Structures immediately made clear.
Then I found myself back with C++ again. First I wrote my own List classes. However I soon realized that STL made available exactly the types of data structures that Perl has. Maps, Lists, Vectors. And since I understood what I was doing in Perl, it was so much easier to catch on with C++.
Perl taught me C++. Who would have thought?
Re:No language that I like better (Score:5, Funny)
Somewhere, a maintenance programmer just slit his wrists.
Re:No language that I like better (Score:5, Funny)
Another is swallowing a bullet, while a third fell on his sword. There's more than one way to do yourself in!
Re:No language that I like better (Score:3, Insightful)
Re:No language that I like better (Score:2)
Other than that, i really like it. It's easy to write, runs really fast for interpreted code, and and it's extensible as hell (CPAN [cpan.org]). Great for s
Re:No language that I like better (Score:3, Informative)
I'm very glad that Perl 6 will have better thought out OOP support. It would have made a recent 7,500 line project I worked on much smaller, easier, and more stable.
You're correct, though; it's a very useful language outside of the poor OOP.
Re:No language that I like better (Score:5, Informative)
Right now i found all i needed in the Perl.org site - this OO tutorial [perl.org] for Perl is pretty complete. There's also this one [perl.org], which is oriented to begginers.
In fact, i always keep a browser window open to Perl.org when i'm coding Perl - the tutorials are very nice, but the function reference has been priceless to me.
Re:No language that I like better (Score:4, Interesting)
In C, you do this with functions in a
In C++, you put the data and the functions together in one package and call it a class. Think of a class as a C struct with a bunch of function pointers in it. So instead of calling myfunction(mystruct) you call myclass.myfunction(). Its conceptually the same (in fact, the machine code is almost identical).
By now you should be thinking "damn, that sounds like what I do in C already". It is. Good C programmers did OOP before OOP was a buzzword. languages like C and Java just add some syntactic sugar like inheretance (one of the most abused language features ever, especially in Java) and autoatic constructiors and destructors into the mix.
Re:No language that I like better (Score:2)
Care to elaborate? You mean because people write inheriting classes that overwrite functions and violate their contracts?
No , Perl taught you data structures. (Score:3, Insightful)
more to C++ than the STL! Yes , I know , its amazing isn't it that a language
thats only been around 20 years and is based on C which has been around for
over 30 is more complex than this , but, well son , its true. Until you
understand not just all the cool trendy OO and generic side but also understand
pointer arithmetic, indirection , word boundary alignment issues and 101 other
low level topics inherited from C then you DO NOT "know" C
What is Perl 6? (Score:3, Funny)
New Perl excitement (Score:5, Insightful)
What Perl 6 offers is a rejuvenation of the language. Perl 5 still works great (better than ever due to new efforts to stamp out even the most obscure bugs) but this new revision is attracting some *really* smart people who are bringing interesting new ideas to the language. Audrey Tang and Luke Palmer come to mind right away.
My greatest hope, however, is not that a revitalized Perl will squash the other dynamic languages (Python, Ruby, PHP, ECMAScript, etc) but will instead bring them into a state of interoperability. I really, really want Parrot to succeed so well that the other languages decide to target it as a backend so I can trivially call Python or C libraries from Perl and vice versa.
Re:New Perl excitement (Score:2)
I'm really looking forward to Parrot as well. It has the potential to unify Perl, Python, and Ruby in a very nice way - the languages all
Hear me True Gods of Interoperability (Score:2)
Re:Hear me True Gods of Interoperability (Score:2, Informative)
That's what Parrot's NCI layer does. It's a foreign function interface to shared libraries. It's much nicer than Perl 5's XS.
Re:New Perl excitement (Score:5, Insightful)
Neat, yes, but It's not pleasant to read... (Score:2)
Re:Neat, yes, but It's not pleasant to read... (Score:2)
Re:Neat, yes, but It's not pleasant to read... (Score:2)
Re:Neat, yes, but It's not pleasant to read... (Score:2)
One thing perl is still good for. (Score:2, Insightful)
Perl 6 is evolving the language into awesome! (Score:3, Interesting)
"(Perl 5 overloaded curly braces in six different ways. If you can list four, you're doing well.)" ! Java has something like 22 levels of precedence. Most people will use the bare minimum of that, lest they tread upon a dragon's tail.
And, one of my favourite points: "Why is the method call operator two characters (one shifted), not a single dot? "
Perl 6 means a simpler, better parser, while keeping all the language strengths. This means it won't be such a bitch to deal with mod_perl's weird gleeps once it's Perl 6. This means smaller process overhead. This means quicker development of web applications that are cool (although I must admit, Ruby on Rails is also pretty neat looking).
The new regex syntax alone is reason to switch!
Re:Perl 6 is evolving the language into awesome! (Score:2, Interesting)
Re:Perl 6 is evolving the language into awesome! (Score:3, Insightful)
And wasn't that well thought out. Who needs "+" for concat like most
other scripting languages when you can use a "." instead. Doh.
Re:Perl 6 is evolving the language into awesome! (Score:3, Interesting)
"+" as an operator sugguests that the order of the items being operated on has no effect on the answer...
eg. 2 + 3 == 3 + 2
but
"two" + "three" != "three" + "two"
Re:Perl 6 is evolving the language into awesome! (Score:4, Insightful)
And a dot suggests a decimal point. Plus or double bar are used as concat
almost everywhere else. Using a dot was not very logical. But I guess that
follows the general philosphy of perl syntax anyway.
Re:Perl 6 is evolving the language into awesome! (Score:4, Informative)
"1"."2" eq "12"
and
1 + 2 == 3
If a loosely typed language is using + for concatenation, it's poorly designed (you'd end up typing more to specify what you want done).
You need to know that the concatenation of two variables is not the same as adding them together.
Slightly relieved that Perl 6 switched from using underscore to tilde for concat - underscore is overloaded with so many other tasks already. Unfortunately ~ still requires shift to be pressed on my keyboards, but I guess they are running out of symbols, and at least I think ~ won't require you to keep putting spaces around it to disambiguate it from other meanings.
Q. What is Perl 6? (Score:5, Funny)
Who cares what Perl 6 is.. (Score:2, Informative)
Re:Who cares what Perl 6 is.. (Score:2)
Re:Who cares what Perl 6 is.. (Score:2)
Re:Who cares what Perl 6 is.. (Score:2, Troll)
Actually, I found an example of what you mention (Score:3, Informative)
I asked around in #ruby-lang about this, and this is not only the #1 bug in Ruby, it will be fixed in 2.0.
If you had a more concrete broken-lexical-scoping example, please feel free to provide.
In the meantime, if this is the biggest Ruby bug, I'm planning on sticking around for sure
WHOOPITUPTITUDE! (Score:4, Funny)
From TFA:
Whipituptitude?!
That is awesome. Made up words a--
Whats this? Manipulexity?
How much awesome can you cram into a single sentence?
Re:WHOOPITUPTITUDE! (Score:3, Funny)
Re:The funny thing is... (Score:2)
Re:The funny thing is... (Score:4, Funny)
* In TFA1: whipituptitude
* In TFA2 referenced from TFA1: whipuptitude
With Perl, there is always more than one way to spell it.
Re:WHOOPITUPTITUDE! (Score:2)
Re:WHOOPITUPTITUDE! (Score:3, Funny)
Re:WHOOPITUPTITUDE! (Score:3, Funny)
My short experience with perl... (Score:3, Insightful)
I knew what I wanted to do, but needed to learn the language. I struggled with the awful syntax for three days. The breaking point came when I wanted a list of lists and realised that Perl "flattens" nested lists. How do you write nested lists such as [[1,2],[3,4],5,[6,7,8]]? In Python, it's trivial (that's how you'd write it), but in perl, nobody I talked to could give me an answer. It flattens it, unasked, to [1,2,3,4,5,6,7,8] and, try as I might, I can't see the point. (It turns out it's possible to have nested lists, but it's yet another example of perl's horrendous syntax).
Finally, I decided to give python a try. I spent an hour reading the python tutorial, and in another three hours, I had reimplemented everything I'd done in the last three days in perl, and an hour after that I'd finished the job. Python syntax was, and still is, the cleanest I've ever seen. It's an amazing language. And it changed the way I think about programming: it gave me an appreciation of functional methods (I now use ocaml [inria.fr] a lot) and also changed the way I write C (vastly for the better).
That was it. No more perl for me.
Re:My short experience with perl... (Score:3, Informative)
Re:My short experience with perl... (Score:2)
My point was that I didn't need to wrap my head around such mindless syntax issues for python. (Or indeed for any language I've learned since: OCaml, a bit of Haskell and Lisp).
Re:My short experience with perl... (Score:5, Informative)
Oh please.
"Especially when every perl doc I see around tells me to use curved parentheses for lists, and @ prefixes for variables that refer to them..."
How hard did you look, really? If you go to Google and type in perl list of lists, the FIRST link takes you here [perl.com].
And within 1/2 a page, you see this:
Damn anti-Perl trolls :-)
Re:My short experience with perl... (Score:3, Informative)
You're right; you do need curved parens for real lists. It may be helpful to think of the @ mark as referring to multiple values, rather than to a list specifically. It's also used for list and hash slices, like this: @list[1,3,5] and @names{'tom', 'dick', 'harry'} (Both
Re:My short experience with perl... (Score:3, Informative)
It turns out Perl is *still* clever enough to figure out that $list[0] is a reference, and will automatically dereference it for you. No -> required. The beauty of this automatic dereferencing is that it allows Perl to DWIM (Do What I Mean): Perl is perfectly content to let you pretend that a 'list of *references* to lists' is actually just a 'list of lists'. The downside of the automatic dereferencing is th
Re:My short experience with perl... (Score:2)
Everything is parenthesized fully.
'((1 2) (3 4) 5 (6 7 8)) would be your list of lists.
Re:My short experience with perl... (Score:4, Funny)
Re:My short experience with perl... (Score:2, Informative)
Indeed?
$ cat list.pl
@a = ((1,2),(3,4),5,(6,7,8));
print @a[0], " ", @a[1], " ", @a[2], " ", @a[3], " ", "\n";
print $a[0], " ", $a[1], " ", $a[2], " ", $a[3], " ", "\n";
$ perl list.pl
1 2 3 4
1 2 3 4
$ cat list.py
a = [[1,2],[3,4],5,[6,7,8]]
print a[0], " ", a[1], " ", a[2], " ", a[3]
$ python list.py
[1, 2] [3, 4] 5 [6, 7, 8]
$
Re:My short experience with perl... (Score:2, Informative)
Yes, indeed. So you change the arrayref of arrayrefs in your first post to an array of lists in the parent code and wonder why it doesn't work?
Let's assume you actually do want a list of lists and we'll brace the 5 and make it an array of arrayrefs.
Or, sticking to your original arrayref of arrayref notation:
cLi
Re:My short experience with perl... (Score:2)
print "@{$a->[0]} - @{$a->[1]} - @{$a->[2]} - @{$a->[3]} \n";
I think that's what someone told me later, and that's exactly why I hate perl...
Re:My short experience with perl... (Score:2)
Re:My short experience with perl... (Score:2)
Re:My short experience with perl... (Score:2)
Re:My short experience with perl... (Score:3, Insightful)
In python, an array consists of "[ what,ever,here ]" and that extends inituitively, *without* needing to read any manual-page to the case where "what" in itself is a array (or anything else).
It's not inituitive that (1,2,3,4) is the same as ((1,2),(3,4)). That's not reasonable at all. Yes there's an explanation for it. Yes the explanation makes sense, from a certain point of view. Th
Re:My short experience with perl... (Score:2)
Thing is, a list (or the value of an array) is always a list of scalars, so you're right, perl does flatten lists. But elements of a list can be references to arrays. (a,b,c) denotes a list, while [a,b,c]
Re:My short experience with perl... (Score:5, Informative)
Intuitively, a new user would look at the TOC and see perldata "Perl Data Types" and think that the complete definition of the 3 main Perl data types would be described. So rsidd looks for instructions on creating multidimensional arrays, sees "List value constructors" and gets this:
So they head over to perlref (an extra level of indirection) and notice in Item 2:
But this isn't really easy to understand. Why does he need an arrayref when he wants an array?
@array = [1, 2, ['a', 'b', 'c']];
That isn't the same as what he wants. In fact, it's not what you'd expect from DWIM. It's a single entry array, not a multidimensional array. It's not even a list of lists (unless you perform a little magic on it).
So finally after struggling with this and ending up with some ugly monstrosity like the following:
@array = @{[1,2,\@{['a','b','c']}]};
Now his code works, but it isn't very easy to understand, and the maintainers of this code are going to tell everyone how evil and illegible Perl is because the programmer here couldn't figure out how to make a multidimensional array.
The only FAQ entry with the term "multidimensional" in it refers to some DBM-specific topic that doesn't seem to have any relation to the problem at hand. While "list of lists" may be the preferred term in the Perl community, it would be nice to have a FAQ entry like "How do I create a multidimensional array?"
As you've mentioned, perllol has the exact syntax of how to do this. Unfortunately for our poor programmer, the link to that is buried in the See Also section alongside perldsc (which is large and contains quite a bit of irrelevant information like 'use strict' information, while at the same time not providing very detailed information about the data structures themselves). The very first 'perldoc perllol' page displayed gives the answer immediately:
Why is it so hard to get to this simple explanation? Why should a neophyte have to go through two documents to finally get to perllol? The FAQ should describe the technique using "multidimensional" as a keyword.
I love Perl, and I love the depth and breadth of the Perl docs, but they are difficult to navigate for Perl neophytes.
Re:My short experience with perl... (Score:4, Insightful)
Having used python for about 3 years now, I'm yet to find something that I can't easily do in it, that I can in other languages. Except for speed/numbercrunching issues. And then I use ocaml (for new code) or C (for existing code). Even if I liked perl syntax and hated python's whitespace-significance (I don't and I don't), I imagine I'd have migrated to ruby by now.
Actually, the really cool feature of Python, one that I use all the time now, is "list comprehensions" -- an idea stolen from Haskell, and as far as I know, no other language has it. You can't do anything with it that you couldn't with map() and filter() but it's a much more elegant way of writing things -- just the way mathematicians would with sets.
Re:My short experience with perl... (Score:3, Interesting)
The mind-bending thing of Haskell's list comprehension is mostly that they're evaluated lazily, and can be of infinite length. A famous examples is of course the implementation of the Fibonacci function in Haskell as an infinite list:
fibo = 1 : 1 : zipWith (+) fibo (tail fibo)
Python's list comprehensions are rather neat, but they lack those features, so they don't come near Haskell's level of mindbendingness. They're mostly a cool shorthand for writing down lists that would have been ugly with map() and f
Comment removed (Score:3, Interesting)
Re:Perl 6 is (Score:3, Interesting)
Not just another virtual machine nobody needs. Perl6 is also a consequent implentation of language development paradigms. Java started some of it with its so called "platform independent" VM. Microsoft jumped on that train with DotNet and its intermediate language for the CRL. Perl6 bundles those ideas together, gets rid of hierarchy constraints inherited from the old OO drafts, and adds complete costumizability to syntax and grammar while trying to keep the number of built-in functions as small as possible
10 Years Overdue (Score:4, Insightful)
Re:10 Years Overdue (Score:5, Informative)
Did you read the same article I wrote or is your post from the mysterious future? Larry announced Perl 6 in the summer of 2000.
Re:10 Years Overdue (Score:3, Interesting)
The 10 years the OP is referring to is the 10 (now 11, nearing 12) years since the release of Perl 5, without any major updates to the language (other than a san
Hiring here. (Score:5, Funny)
We need 5 years experience Perl 6 programmers for 3D game. Reference: P6DNF.
Re:Hiring here. (Score:2)
LMAO, thumbsup
PDL (Score:5, Interesting)
I had to break down a equation into a sequence of linear equations. So I hacked up some PDL in like 2 hours to do that. Couldn't have been easier, even though I'd never used PDL or its perldl perl shell; I just started typing in the interactive shell until it worked as expected and until I knew what I was doing. Then I needed the results in interger, so I rounded everything down, built a permuter and sorted the permuted results for each individual segment. That took three hours, but only because I kept botching the matrix multiplication. Even with huge datasets, generating hundreds of thousands of linear equations, each spanning dozens of datapoints, permuting the linear equations, sorting them and selecting the optimal, PDL would run it all my slow arse 800mhz crusoe laptop in seconds. Matlab couldnt touch it.
Thats the other really truly thing about PDL; the performance. If someone else would chime in and do it better justice, but my crude understanding is that it generates some kind of extremely optimized machine code on first use and runs whatever equations you've thrown at it like silk from that point on.
Little late and a little off topic, but PDL really is just a masterpiece of perl hackability. The PDL perl shell is truly spectacular; get some symbolic integrators and differential equation solving packages in there and I wouldn't need to break open Mathematica or Matlab ever again. Ok, long way away, pdl is really just about matricies, but it is really really sweet, and its shell is good for anyone who just wants to try something out really quickly in fully interactive perl.
That being said, I really cant wait to see where the perl6 VM is going.
G'night!
Myren
Re:PDL (Score:2)
My understanding is that it's written in Fortran. Which mean's it not as flexible as pure Perl code, but runs so much faster. Perl is pretty dog slow at arithmetic.
Perl 6 ~= LISP (Score:3, Interesting)
The question is: is Perl becoming a LISP implementation?
Re:Perl 6 ~= LISP (Score:2)
PUGS (Score:4, Informative)
Apparently they are having a lot of fun.
Perl is between awk and C (Score:3, Insightful)
I keep waiting for a task where it would make sense for me to learn perl... it's never come along.
Meditations on Perl 6 (Score:5, Funny)
Perl 6 may be more akin to a divine programming language, which makes the implimentation of complex data structures simple and sublime. Then again, it could all be a nasty trick to lead us away from the true path of enlightenment.
Perl 6 is not
Perl 6 is not controlled by any major corporation; I haven't decided whether this is advantageous or not yet.
If I were to have a child, would it be written in Perl 6?
Can Perl 6 be used to unlock the secret mysteries of the Bible code to reveal the end times?
Is Perl 6 really being developed by the descendants of Jesus Christ? Is the Pope trying to cover it up? Does the Pope know what Perl is? If so, is using Perl 5 a sin? How about Perl 6?
I bought a preview book on Perl 6 a few years ago. Is it still useful? Can I have my money back?
If Ruby was an upgrade to Perl, and Perl 6 is a an upgrade to Perl and Ruby, will Ruby need to changes their name in such a way as to play off of Ruby Tuesdays?
If I enter the Perl 6, can I change my mind later?
If Perl 6 is brillian, but no one uses it, is it still brilliant? What if it's awful and everyone uses it?
So very tired....
Re: (Score:2)
About 3 years too late (Score:4, Interesting)
I really hope that Perl 6 arrives one day. I'm pretty deep into using Ruby these days having left Perl 5 behind long ago (the part of the article about what's wrong with Perl 5 was really superfluous; maybe it was intended to convince the remainingn Perl folks who are happy with 5 to check out 6), but I'll give Perl 6 a look when it arrives. The grammar support alone looks pretty awesome; it'd be great to have a viable lex/yacc alternative. In the meantime I want to learn some languages that have a bit more immediate promise like Io [iolanguage.com]. It seems that maybe the plans for Perl 6 were just too ambitious. Yes, it's great to start with a clean slate and try to revolutionize, but often it's evolution that wins out.
Re:About 3 years too late (Score:3, Insightful)
I keep seeing statements like this, but I don't understand them. A Haskell implementation of a Perl interpreter is no different than a C implementation, which is what Perl 5 uses. The interpreter has to be written in something. Why not choose a high level language that will allow high productivity?
My guess is that you, and the others who make these remarks, don't know anything about Haskell and think it is Yet Another Scripting Language.
Is this the last revision? (Score:3, Insightful)
In other words, the spec still isn't nailed down. I may have only been been loosely following Perl 6's progress, but having seen the concatention operator change from . to ~ to _ during Perl 6's development, I'll wait until the final spec comes out, thanks.
Perl What? (Score:2)
perl 5.8.
Come on now, how long as Perl 6 been in beta? According to this page, [perl.org] it's been an ongoing effort for at least 3 years, and the oldest link on that page talks about how long it's been since a Perl 6 update!
It's like waiting for the next release of Debian - don't hold your breath, don't delay your shower. Check back when your grandson has his first kid.
Some much better... (Score:3, Interesting)
Some thing are just so easy there's no pride in it. Now make something more wich is harder to read then Perl 5 and you've achieved something. It may be better, but is it good?
Obligatory Muppets Quote (Score:3, Funny)
The Question is "Who Cares"
Perl 6 = COBOL 9x (Score:3, Interesting)
Just one question (Score:3, Interesting)
Some of us have predecessor's code to use and maintain that do the darnedest things, you know. A bit of protection from the madness of others, that's all I'm asking for.
Re:starting from the bottom (Score:3, Insightful)
Linux began as just for fun, Bill Gates' vision when starting Microsoft was "join the bandwagon as fast as you can before you miss the oppurtunity", and Perl itself started as a replacement for awk.
IMO, you can go either way- top down or bottom up- as long as you're competent enough to see oppurtun
Re:I have few counter arguments (Score:2)
However, my point is that we can't say project X is doomed because they started with the implementation and not the goal. Google's pagerank algorithm started before "To enable searching the world's information". Same for a lot of other things.
There are many ways a project can succeed:
goal->plan->implementation cycle( a shorthand for your dream/vision thingie)
or
implementation->opportunity-
Re:starting from the bottom (Score:2)
Re:What is Perl 6? (Score:2)
It's when some reviewer said Tron was the Matrix of the eighties.
Re:Too many changes all at once (Score:4, Insightful)
Think about it. Larry Wall accepted numerous RFCs from programmers of all walks, discussing Perl's problems / desires for new features / suggestions for new implementations / ideas how to change the syntax. He commented on each one, indicating whether (1) he agreed with the problem, (2) whether he agreed with the solution, (3) what, if anything, he thought should be done about it.
In the mean time, a radically new language glue system is introduced - Parrot. Perl had such wild success with XS - granted, Parrot isn't just about making language A talk to language B, but it's certainly an example of natural evolution.
As for Pugs, it's been fantastic. It's allowed lots of people to write real and working Perl 6 code (including lots of tests) to evaluate all aspects of the Perl 6 design before it goes into production.
Now, I'm not addressing you directly with this last part; rather, a greater community of Slashdot trolls. If you don't feel like Perl is for you, or if you feel like Perl is no longer for you, fine. Find your way to Ruby, Python, Java or whatever floats your boat.
But please, it's getting really goddamned irritating to have to sift through the comments of a handful of armchair morons that sit at home, interfacing with something called "comments.pl", eating doritos and talking about how the greater Perl community should just drop everything and go to language X, or repeating a tired meme about how the language is making no progress at all (when all they need to do to see the massive progress is read Audrey Tang's blog or visit pugscode.org). And then, there are some mods that feel it appropriate to mark clueless jabs as "insightful".
I am thankful of one thing - Perl's momentum. While everyone else is barking about how (name my scripting language) is great this week for doing web pages or some nonsense, there is still a huge community of devoted, bleeding edge language researchers and smart people, chisel in hand, forming Perl 6 from the rocks.
And while the naysayers are switching languages once a week as they make incremental advantages over eachother -- while they're totally clueless that so many of the 'advancements' in their own languages over the years have been 'borrowed' from or 'inspired' by perl, the aforementioned language scientists are preparing to do once again what Larry Wall did, intentionally or not, when he released Perl on the world - bring about a revolution.
Re:Too many changes all at once (Score:3, Insightful)
I think you're in denial of what's gone wrong with the P6 process, regardless of how great a language it may be five years from now. You don't develop a language by soliciting opinions and letting things pile up for years without prototyping anything. You certainly don't throw out everything on every level all at once and start up an independent project to develop a virtual machine for an undefined language. Mr. T