perl6 or not perl6 ...
monkey_boy
created: 2006-03-09 06:13:17
that is the question!
Note: this is not intended as a serious question, just a little fun!
Q: Given that perl6 appears to be *very* different from perl as we know (and love) it, should it be called perl6 or something else?, please add your suggestions or vote!


This is not a Signature...
Re: perl6 or not perl6 ...
created: 2006-03-09 06:36:12
Anything but "Perl 2007" or "dotPerl" :)

Igor 'izut' Sutton
your code, your rules.

Re^2: perl6 or not perl6 ...
created: 2006-03-09 11:32:44
Perl 2007 might be optimistic anyway. {grin}

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

Re^3: perl6 or not perl6 ...
created: 2006-03-10 01:27:52
It was the same for Windows 95, wasn't it? Or did some other popular software start the name-things-after-their-release-date fad?
Re: perl6 or not perl6 ...
created: 2006-03-09 06:51:23
Perl XP (xtra powerful)

I'm not really a human, but I play one on earth. flash japh
Re: perl6 or not perl6 ...
created: 2006-03-09 07:32:28
A rose by any other name... unless it were named Vista :P

Martin
Re^2: perl6 or not perl6 ...
created: 2006-03-09 10:53:38
You meant thisVista, too?
Re^2: perl6 or not perl6 ...
created: 2006-03-09 11:19:35

Or even this Vista - who have a horrible programming language called Vista-4GL.

--

Oh Lord, won’t you burn me a Knoppix CD ?
My friends all rate Windows, I must disagree.
Your powers of persuasion will set them all free,
So oh Lord, won’t you burn me a Knoppix CD ?
(Missquoting Janis Joplin)

Re^2: perl6 or not perl6 ...
created: 2006-03-09 12:26:57
I'll throw this Vista into the ring as well.

Cheers,

Brent

-- Yeah, I'm a Delt.
Re: perl6 or not perl6 ...
created: 2006-03-09 07:42:36
Given the recent popularity of this, maybe 'perl on rails' ?
Re^2: perl6 or not perl6 ...
created: 2006-03-09 07:55:16
I'd prefer my perl on the rocks.

And it looks like perl6 may leave us shaken AND stirred...

Re^3: perl6 or not perl6 ...
created: 2006-03-09 08:32:25

Perl on the Skids?

Re^2: perl6 or not perl6 ...
created: 2006-03-09 12:57:35
It's been done: Perl on Poles.
Re^3: perl6 or not perl6 ...
created: 2006-03-11 00:12:28

merlyn once suggested Perl on Planks.

Makeshifts last the longest.

Re: perl6 or not perl6 ...
created: 2006-03-09 08:56:39
Perl NG
NG = Next Generation if you like it, or No Good if you don't.

In any case, I agree that it should not be called Perl 6.

Remember: There's always one more bug.
Re^2: perl6 or not perl6 ...
created: 2006-03-09 16:12:49
And then we can call our present Perl, Perl TOS!

TOS = The Original Series, for all you non-Trekkies out there.

CountZero

"If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law

Re: perl6 or not perl6 ...
created: 2006-03-09 09:12:29

Not sure, but ... is the difference between Perl5 and Perl6 really that much bigger than the one between Perl4 and Perl5 was? I think it's actually smaller, but that's just me.

Re^2: perl6 or not perl6 ...
created: 2006-03-09 09:24:16
im afraid i wasnt around for perl4, well i was around, but in school shorts ;), so i cant comment on how different it was.
In any case, maybe they has this same disscussion then as well.


This is not a Signature...
Re^2: perl6 or not perl6 ...
created: 2006-03-09 14:05:32

is the difference between Perl5 and Perl6 really that much bigger than the one between Perl4 and Perl5 was?

Yes.

Much Perl 4 code still runs unmodified on Perl 5. While much of the internals changed, the language did not really change much. It got new features, but almost none of the existing language was changed.

Perl 6 code is always different from Perl 5 code. There is a different operator precedence table, operators themselves are different, it lacks some (deprecated) Perl 5 features, and even has a different vocabulary.

From 4 to 5, most of the source was rewritten. From 5 to 6, all will.

And it was about time.

Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

Re^3: perl6 or not perl6 ...
created: 2006-03-09 18:59:49

You are and are not right. Yeah you can run Perl4 scripts by perl5 while you ... well, they all say you'll be able to run Perl5 scripts by perl6 ;-) But conceptually I think there was a huge gap between Perl4 and Perl5. You've got real references, real datastructures, real lexical variables, objects ... an improved shell became a fullblown general-purpose language. So yes, you'll get some new operators, you get different precedence (ack?!?), you get some more OO features, you get what non-perl-people call function prototypes, you get a brand new source tree, but ... well, it's hard to compare :-)

Re^4: perl6 or not perl6 ...
created: 2006-03-10 02:54:58

they all say you'll be able to run Perl5 scripts by perl6

For that, plain old Perl 5 is used, albeit automatically. This is a feature of the implementation as it is planned, not of the language.

But conceptually I think there was a huge gap between Perl4 and Perl5. You've got real references, real datastructures, real lexical variables, objects

Those were all additions to the existing language. Yes, it was a big step, and there was a huge gap in between. However, the change was almost fully backwards compatible. It's like changing your house by adding a few floors on top of it. Perl 6 on the other hand will redesign the bottom levels as well, because the Perl 1..5 house was built with Jenga blocks. I think the change from 5 to 6 is more than a huge gap; I think a new language is being designed.

Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

Re^3: perl6 or not perl6 ...
created: 2006-03-11 00:04:07

I agree with Jenda here, actually. Whether the code written for the older version runs on the newer one is not really the determining factor in my mind.

What counts is that idiomatic Perl 5 is very different from idiomatic Perl 4 in architecture, whereas idiomatic Perl 6 won’t be nearly as different from idiomatic Perl 5, at least in everyday code that does not strain against the limitations of Perl 5 too hard. Perl 4 was really more of a scriptable tool, whereas Perl 5 is a serious language.

Perl 6 does not really reform the way systems written in Perl are to be architectured, it just makes these architectures easier to implement by putting various and sundry premanufactured, well-designed nuts and bolts into the language, so you don’t have to spend so much time building them all yourself.

In syntax, it is much bigger departure from Perl 5 than Perl 5 was from Perl 4; but in spirit, Perl 6 is much closer to Perl 5 than Perl 5 is to Perl 4.

Makeshifts last the longest.

Re^4: perl6 or not perl6 ...
created: 2006-03-11 07:21:19
What counts is that idiomatic Perl 5 is very different from idiomatic Perl 4 in architecture, whereas idiomatic Perl 6 won’t be nearly as different from idiomatic Perl 5, at least in everyday code that does not strain against the limitations of Perl 5 too hard.

Do we know enough about Perl 6 code to say what's going to be idiomatic or not?

Perl 6 does not really reform the way systems written in Perl are to be architectured, it just makes these architectures easier to implement by putting various and sundry premanufactured, well-designed nuts and bolts into the language, so you don’t have to spend so much time building them all yourself.

I wonder if we'll see an equivalent of the the "people writing C in C++" problem in Perl 6. While there isn't a huge amount in Perl 6 that's impossible in Perl 5, there are certainly a lot of things that are much easier - including things that are fairly marginal in the Perl 5 world like roles, design by contract, etc.

Combine this with things like macros that don't have any Perl 5 equivalent then I suspect (hope indeed) that Perl 6 solutions are going to be as different from Perl 5 ones as the Perl 5 ones were from Perl 4.

Re^5: perl6 or not perl6 ...
created: 2006-03-11 10:38:27

Do we know enough about Perl 6 code to say what's going to be idiomatic or not?

I think the 42_000+ lines of existing Perl 6 code are a nice show case, showing that even without working roles support, idiomatic Perl is already different. This is an old count of Pugs' tests and examples, and doesn't include the brand new lrep engine yet.

Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

Re^5: perl6 or not perl6 ...
created: 2006-03-11 22:34:13

Note that I was talking about architecture, not individual constructs. Those will indubitably change dramatically. But Perl 6 does not introduce new data structures. In accordance with the famous Show me your tables and conceal your flowcharts qoutation, I believe P6 code won’t be architected in fundamentally different ways from P5 code. If, say, Perl 6 was to introduce a tree data type alongside scalars, hashes, arrays and functions, then I could see how things could drastically shift around. Compare to how Perl 4 has no references, which means that the architecture (architecture, not syntactical expression) of an ideal Perl 4 solution is very, very different from an ideal Perl 5 one.

Makeshifts last the longest.

Re^6: perl6 or not perl6 ...
created: 2006-03-12 05:20:24
But Perl 6 does not introduce new data structures

Well, apart from P6opaque, properties, classes (as first class objects), rules, continuations, Complex, Bit, arbitrary precision float/integer types, Rat, Inf, NaN, Signatures, packages (as first class objects), modules, grammars, lazy lists, control exception, tokens, Bool, polymorphic types, structs, Junctions, Enums, ...

Not following Perl 6 development in detail some of these might be wrong, but I've probably missed some too :-)

At to be honest - with my Lispish code-is-data hat on you can look at traits, macros, types/roles as data instead of code too.

In accordance with the famous Show me your tables and conceal your flowcharts qoutation, I believe P6 code won’t be architected in fundamentally different ways from P5 code. If, say, Perl 6 was to introduce a tree data type alongside scalars, hashes, arrays and functions, then I could see how things could drastically shift around.

Let me pick two examples.

I know that if I start developing in Perl 6 that I'm likely to take advantage of the new OO frameworks ability to do multiple dispatch when I think that it would make things simpler. In Perl 5 I'd probably do double (triple, whatever) dispatch instead. To me that's a fairly large architectural difference.

Now that I have grammars/rules and can extend the Perl language itself I'm much more likely to build Domain Specific Languages on top of Perl (so that they're really just Perl with extra syntax) rather than with Perl (where Perl just parses and interprets a completely separate language.) To me that's a very large architectural change.

As ever YMMV :-)

Re^4: perl6 or not perl6 ...
created: 2006-03-11 10:33:25

What counts is that idiomatic Perl 5 is very different from idiomatic Perl 4 in architecture, whereas idiomatic Perl 6 won’t be nearly as different from idiomatic Perl 5

Really? Many of the (already frowned upon) idioms are abstracted into functions or operators. This takes away a lot of the (in)famous line noise.

Perl 6 does not really reform the way systems written in Perl are to be architectured

Really? Of course, you can still use the same architectures you used in Perl 5 (as you can still use the architectures you used in Perl 4), but there's a wealth of new paradigms entering the language, with roles hopefully shifting around the idiomatic OO landscape forever. That's just one example, but there are many more architectural possibilities new in Perl 6. Many of which go further than the addition of references, namespaces and lexical variables. (It's not entirely accidental that I name three features that PHP does not have. People manage to use PHP and Perl in much the same way, while PHP lacks these things. Try, to use roles, hyperoperators, or environmental variables, in Perl 5 or PHP...)

but in spirit, Perl 6 is much closer to Perl 5 than Perl 5 is to Perl 4.

Agreed, but then, so is Ruby, which is fortunately not called Perl.

Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

Re^5: perl6 or not perl6 ...
created: 2006-03-11 22:22:13

The OO stuff is what I precisely was referring to when I said Perl 6 will just make things a whole lot easier to build by providing default mechanisms that would have to be built manually Perl 5. Class::C3, Class::Trait, NEXT: all built in or easy to achieve, and more powerful and flexible. But you do have all of those in Perl 5 in some form – it just takes way more effort, which most people are unwilling to expend (hardly surprising).

Really, if you think the Perl 6 we have now should have been called something other than Perl 6, then what kind of language should have been called Perl 6?

Makeshifts last the longest.

Re^6: perl6 or not perl6 ...
created: 2006-03-12 05:35:32

Really, if you think the Perl 6 we have now should have been called something other than Perl 6, then what kind of language should have been called Perl 6?

That's a very interesting one, but only answer I can honestly give is that Perl's time is up. It has been for a few years. Perl 6 could be a rewrite of Perl 5 with some extra features, for those fanatics who keep using the language.

Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

Re^7: perl6 or not perl6 ...
created: 2006-03-13 21:19:33
If Perl's time is up then obviously it's getting less important and we would do better to rehuffmanize its name to something longer like, say, Perl 5.10 or some such...

But hey, that just frees up the perfectly good four-letter word "Perl" for other uses. :-)

Re: perl6 or not perl6 ...
created: 2006-03-09 10:44:55

Logically, the answer is simple. We'd have to name it 'Swine' (Perl before swine, after all)...

Re: perl6 or not perl6 ...
created: 2006-03-09 11:00:35
Allll riiiight, who's the drip * 5 who downvoted monkey_boy??? He DID say it's about fun!

Pfarcically Excruciatingly Reactionary L... it's not done yet?        oh.



Note: This post is completely in jest. I truly DO value the hard work all of those who really DO contribute put into Perl6 and FreeBSD and all other open source projects I use and love!

Don Wilde
"There's more than one level to any answer."
Re: perl6 or not perl6 ...
created: 2006-03-09 12:26:26
Re: perl6 or not perl6 ...
created: 2006-03-09 12:35:06

Considering that Perl6 will run Perl5 code directly, I don't think the very different moniker really works. Perl6 is the next version of Perl after Perl5 -- I don't see why it should be a different name.

<-radiant.matrix->
A collection of thoughts and links from the minds of geeks
The Code that can be seen is not the true Code
I haven't found a problem yet that can't be solved by a well-placed trebuchet
Re^2: perl6 or not perl6 ...
created: 2006-03-09 14:07:41

Perl6 will run Perl5 code directly

The implementation of Perl 6 will probably have some heuristics for detecting Perl 5 code, and can (if compiled with support for it) invoke an (external or embedded) interpreter for it. However, the language Perl 6 is not compatible with Perl 5.

Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

Re: perl6 or not perl6 ...
created: 2006-03-09 12:36:40
Blue Sky Perl
Re: perl6 or not perl6 ...
created: 2006-03-09 15:05:16

I noticed TheDamian's recent linux.conf.au 2006 talk in Dunedin was titled:

Sex *and* Violence: Technical and Social Lessons from the Perl 6 Development (or why Larry gets the colon and we should not have called it Perl 6)
However, I don't know what he suggested it should have been called or why he asserts it shouldn't have been called Perl 6. If any monk attended the talk, please let us know. :-)

I found two links describing the talk:

If anyone knows of better talk links or slides, please let us know. Ta.

Re: perl6 or not perl6 ...
created: 2006-03-09 16:46:05
  • Dromedary (one hump camels)
  • Bactrian (two hump camels)
  • Pteriidae (the Oysters that produce pearls with value)
  • Nacre (mother-of-pearl)
  • Black Perl
  • Perl of Power (from D&D)
  • PoP (Perl on Parrot)
  • Perl RFC Forever (ala Duke Nukem)
  • Marble Madness!! =:-)
  • LAMPost
  • P++
Hopefully at least one of these is good... ;-)
Re: perl6 or not perl6 ...
created: 2006-03-09 17:28:41
ruby++?
Re: perl6 or not perl6 ...
created: 2006-03-09 22:12:41
eXtreme Perl!
Re: perl6 or not perl6 ...
ady
created: 2006-03-10 01:20:47
from scallop
scalar list object programming
to conch
comprehensively orchestrated neo computational hybrid
or something ... :)

Allan
Re: perl6 or not perl6 ...
created: 2006-03-10 08:56:09
perl#
-- gam3
A picture is worth a thousand words, but takes 200K.
Re: perl6 or not perl6 ...
created: 2006-03-10 09:02:01
How about: Canada!

*chirping crickets*

What, it's being used already? Who knew?

--
tbone1, YAPS (Yet Another Perl Schlub)
And remember, if he succeeds, so what.
- Chick McGee

Re: perl6 or not perl6 ...
created: 2006-03-10 23:24:05
Juju
Gives Perl6 a claim on the mysteries of the universe and the soul...

Also, depending on the number of bugs in any given piece of code, it can be Good Juju, Bad Juju, or BAD Juju (goes either way to the extreme...inflection required for meaning). BAAAAAAAD Juju is the best, while "BAD JUJU!" is the worst.

PerlPants
Simply because resumes and job postings would become that much more amusing ...

PPerl
Who knows what that first "P" is...which adds one more letter to the mystery that is P E R L.

What
Nobody knows for certain anyway and it will be great fun in conversations.

Re^2: perl6 or not perl6 ...
created: 2006-03-11 10:40:08

Who knows what that first "P" is...which adds one more letter to the mystery that is P E R L.

exists, and the first "P" stands for persistent.

Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

Re: perl6 or not perl6 ...
created: 2006-03-11 16:15:16
We should change the name to an unpronouncable symbol, and refer to it as "the first unpronouncably-named iteration of the language formerly known as Perl".

Or, we could just call it "42".

Re^2: perl6 or not perl6 ...
created: 2006-03-12 15:53:28

But what’s the question?

Makeshifts last the longest.

Re^3: perl6 or not perl6 ...
created: 2006-03-13 01:02:39
How many robes must a camel put on ...

perlmonks.org content © perlmonks.org and adrianh, ady, Anonymous Monk, Argel, Aristotle, ayrnieu, ciderpunx, clinton, CountZero, dokkeldepper, dorko, dwildesnl, eyepopslikeamosquito, gaal, gam3, gloryhack, izut, jdhedden, jdporter, Jenda, Juerd, marto, merlyn, monkey_boy, perlhaq, radiantmatrix, rinceWind, roboslug, rvosa, spiritway, tbone1, TimToady, VSarkiss, zentara

prlmnks.org © 2006 edmund von der burg (eccles & toad)

v 0.03