Re: Help with Perl 6 script

2019-08-12 Thread Ralph Mellor
the > I have this Perl 6 script from Rosetta, which I wanted to run on Perl 5 > (due to the Active Sate Perl and App version that I have). If ActiveState have packaged https://metacpan.org/pod/Inline::Perl6 then please install and use that. (If they haven't, please ask them to

Re: Help with Perl 6 script

2019-08-12 Thread Ralph Mellor
Oops, missed the ending. loop with a parens argument is like a C for with 3 args, init, test, next. The next bit is: ($t, @ABC) »+=« (.01, dABC($t, @ABC, .01)) The » and « opops (or metaops) pack a whole lot of power but can also be used for relatively simple cases like this one in which

Re: Help with Perl 6 script

2019-08-12 Thread Marc Chantreux
hello Rui, > I have this Perl 6 script from Rosetta, which I wanted to run on Perl 5 > (due to the Active Sate Perl and App version that I have). Perl6 and Perl5 are very different. you need to download a perl6 interpretor if you want to run perl6 code. please check https://raku

Re: Help with Perl 6 script

2019-08-12 Thread Andy Bach
Yes, Perl 5 and Perl 6 are quite different in many ways. Some suggested that Perl 6 be looked at as not the next iteration of Perl but a new language that can be made backward compatible with Perl 5 (there are switches etc that let you run P5 code unchanged) but it is not the case of P5 being

Re: Help with Perl 6 script

2019-08-12 Thread William Michels via beginners
Hi Rui, Have you considered just installing Perl 6 ? https://rakudo.org https://www.perl6.org Spoiler alert: the Perl6 code you posted works with no errors on my Perl6 install. Best Regards, Bill. On Thu, Aug 8, 2019 at 1:07 PM Rui Fernandes wrote: > > Greetings > > I have

Re: Help with Perl 6 script

2019-08-12 Thread Bruce Gray
[ Executive Summary: Install Perl 6; it will not disturb your Activestate Perl 5 : https://rakudo.org/files ] > On Aug 8, 2019, at 3:07 PM, Rui Fernandes wrote: > > Greetings Hi Rui! > > I have this Perl 6 script from Rosetta, which I wanted to run on Perl 5 (due > to th

Help with Perl 6 script

2019-08-08 Thread Rui Fernandes
Greetings I have this Perl 6 script from Rosetta, which I wanted to run on Perl 5 (due to the Active Sate Perl and App version that I have). However, several syntax errors appear given the difference (some) in language.Here's the script: --- # Simple Vector implementation multi infix:<+>(

Re: Perl 6

2015-12-16 Thread Shlomi Fish
Hi Jitendra, On Tue, 15 Dec 2015 14:29:45 +0530 Jitendra Barik <jbarik...@gmail.com> wrote: > Hi All, > > Please let me know difference between Perl 5 and Perl 6? > in addition to what the other people here said, you may wish to peruse this page: http://perl-begin.org/le

Perl 6

2015-12-15 Thread Jitendra Barik
Hi All, Please let me know difference between Perl 5 and Perl 6? -- Regards, Jitendra

Re: Perl 6

2015-12-15 Thread Christopher Brenk via beginners
There is an overview in the official documentation. Check https://design.perl6.org/Differences.html Jitendra Barik <jbarik...@gmail.com> schrieb am Di., 15. Dez. 2015 10:00: > Hi All, > > Please let me know difference between Perl 5 and Perl 6? > > > -- > Regards, > Jitendra >

Re: Perl 6

2015-12-15 Thread Kent Fredric
On 15 December 2015 at 21:59, Jitendra Barik <jbarik...@gmail.com> wrote: > Please let me know difference between Perl 5 and Perl 6? They are different languages. At least, they are as different as Ruby and Perl 5, if not more so. After all, there's not a lot of programming

Re: Perl 6

2015-12-15 Thread Hal Wigoda
One. On Tue, Dec 15, 2015 at 2:59 AM, Jitendra Barik <jbarik...@gmail.com> wrote: > Hi All, > > Please let me know difference between Perl 5 and Perl 6? > > -- > Regards, > Jitendra > -- - Hal Wigoda Chicago

Re: question about perl 6 sigils

2013-09-29 Thread Peter Scott
On Tue, 24 Sep 2013 18:48:40 +0200, Luca Ferrari wrote: I read both the book and the exegenis, it is only that it requires me to think about the correct usage of sigils because it is not as much intuitive for me as it is in v5. I was just trying to explain to my brain why having immutable

Re: question about perl 6 sigils

2013-09-24 Thread Luca Ferrari
On Tue, Sep 24, 2013 at 12:52 AM, Andy Bach afb...@gmail.com wrote: I liked it, after I understood it. I posted the question for the same reason: I believe that having the sigil meaning what you (are thinking) you are accessing was a great idea. What I don't understand here is why we have to

Re: question about perl 6 sigils

2013-09-24 Thread Andy Bach
On Tue, Sep 24, 2013 at 3:43 AM, Luca Ferrari fluca1...@infinito.it wrote: What I don't understand here is why we have to keep the true sigil for any access. Did you read the exegesis? Damian is one of the smartest guys you'll ever hear speak (his book Perl Best Practices, for one, is worth

Re: question about perl 6 sigils

2013-09-24 Thread Shawn H Corey
On Tue, 24 Sep 2013 10:27:24 -0500 Andy Bach afb...@gmail.com wrote: Did you read the exegesis? Damian is one of the smartest guys you'll ever hear speak (his book Perl Best Practices, for one, is worth it's weight in classrooms - er, something like that). Perl::Critic and its script,

Re: question about perl 6 sigils

2013-09-24 Thread Andy Bach
On Tue, Sep 24, 2013 at 10:44 AM, Shawn H Corey shawnhco...@gmail.comwrote: There is also a third group who want to get rid of sigils entirely. ;) Ahhh! Blasphemy, Blasphemer! That way lies chaos! Dogs and cats, living together! NEVER! Er, sorry. As the exegesis are deprecated (though still

Re: question about perl 6 sigils

2013-09-24 Thread Luca Ferrari
On Tue, Sep 24, 2013 at 5:27 PM, Andy Bach afb...@gmail.com wrote: Did you read the exegesis? Damian is one of the smartest guys you'll ever hear speak (his book Perl Best Practices, for one, is worth it's weight in classrooms - er, something like that). It's not that you're wrong or that

Re: question about perl 6 sigils

2013-09-24 Thread Octavian Rasnita
From: Andy Bach On Tue, Sep 24, 2013 at 10:44 AM, Shawn H Corey shawnhco...@gmail.com wrote: There is also a third group who want to get rid of sigils entirely. ;) Ahhh! Blasphemy, Blasphemer! That way lies chaos! Dogs and cats, living together! NEVER! ... And I was going to

question about perl 6 sigils

2013-09-23 Thread Luca Ferrari
Hi all, I'm having a look at Perl 6 syntax and I don't get the rationale in having different sigils for scalars, hashes and arrays while having a scalar access being with the same type sigil. In other words, in Perl 5 it does make sense (to me) that accessing a single value into a list or hash has

Re: question about perl 6 sigils

2013-09-23 Thread Andy Bach
On Mon, Sep 23, 2013 at 10:17 AM, Luca Ferrari fluca1...@infinito.itwrote: It's just one of those things. When Perl was invented, Larry Wall liked the idea of make the sigil mean something and mutate when the access did. Most other languages (that had sigils) didn't do that. Some people said

[OT] is the book on Perl 6 outdated?

2013-06-03 Thread Luca Ferrari
Hi, since I'm pretty new to Perl 6, is this book http://shop.oreilly.com/product/9780596007379.do outdated or is it worth reading? I ask because the book has been published in 2004, so I guess Perl 6 development has gone miles away now. Luca -- To unsubscribe, e-mail: beginners-unsubscr

Re: [OT] is the book on Perl 6 outdated?

2013-06-03 Thread *Shaji Kalidasan*
Greetings, IMHO it is outdated, but I cannot suggest alternatives as I have no experience in Perl 6. The following link (tutorial) might be helpful to you http://perl6maven.com/tutorial/toc For further information, please refer the official FAQ http://perldoc.perl.org/perlfaq1.html#What

Re: Perl 6 soon?

2010-07-22 Thread Dr.Ruud
Jeff Pang wrote: I saw the words from a people's blog: After only a short ten year wait, a Perl 6 implementation is scheduled for release this month. Rakudo * (aka Rakudo Star) will be inaugurated on July 29th, 2010. Does this mean Perl 6 will be first released soon? There have been Perl

Perl 6 soon?

2010-07-21 Thread Jeff Pang
I saw the words from a people's blog: After only a short ten year wait, a Perl 6 implementation is scheduled for release this month. Rakudo * (aka Rakudo Star) will be inaugurated on July 29th, 2010. Does this mean Perl 6 will be first released soon? Regards. -- Jeff Pang http://home.arcor.de

Re: Perl 6 soon?

2010-07-21 Thread Chas. Owens
On Wed, Jul 21, 2010 at 21:15, Jeff Pang pa...@arcor.de wrote: I saw the words from a people's blog: After only a short ten year wait, a Perl 6 implementation is scheduled for release this month. Rakudo * (aka Rakudo Star) will be inaugurated on July 29th, 2010. Does this mean Perl 6

Perl 6 Sentiments

2009-12-11 Thread Aimee Cardenas
Hi, All! I've just been reading a lot about P6 lately and can't wait for it's arrival! But I guess I'll have to. :-( Just thought I'd express my status of waiting with bated breath. I guess the P6 arrival date is still when it's done. Does anyone have a more specific time frame

Re: Perl 6 Sentiments

2009-12-11 Thread Shawn H Corey
specific time frame within which it might be available? Thanks, Aimee Cardenas There are two implementation of Perl 6 available, Pugs and Rakudo. Check out the Perl 6 development site: http://dev.perl.org/perl6/ There is also a Perl 6 users mailing list: http://dev.perl.org/perl6/lists

Re: Perl 6 Sentiments

2009-12-11 Thread Aimee Cardenas
Cool, thanks. So, I've read that pugs is a test version of Perl 6. Is Rakudo the official Perl 6 release? I'm a little confused. Thanks, Aimee Cardenas On Dec 11, 2009, at 11:58 AM, Shawn H Corey wrote: Aimee Cardenas wrote: Hi, All! I've just been reading a lot about P6 lately

Re: Perl 6 Sentiments

2009-12-11 Thread Shawn H Corey
Aimee Cardenas wrote: Cool, thanks. So, I've read that pugs is a test version of Perl 6. Is Rakudo the official Perl 6 release? I'm a little confused. As I understand it, Pugs is a stand-alone version; Rakudo uses Parrot (like Perl 6 is suppose to). Neither is a complete implementation

Re: Perl 6 Sentiments

2009-12-11 Thread Aimee Cardenas
Thanks a bunch! This is very helpful. :-) Aimee Cardenas On Dec 11, 2009, at 12:12 PM, Shawn H Corey wrote: Aimee Cardenas wrote: Cool, thanks. So, I've read that pugs is a test version of Perl 6. Is Rakudo the official Perl 6 release? I'm a little confused. As I understand

Fwd: Perl 6 Sentiments

2009-12-11 Thread Aimee Cardenas
Begin forwarded message: From: Aimee Cardenas aim...@sfbrgenetics.org Date: December 11, 2009 2:10:19 PM CST To: paik...@googlemail.com Subject: Re: Perl 6 Sentiments Interesting. There are as many different flavors of opinions as there are people. :-) I'm just excited to be able to use

Perl 6

2008-01-04 Thread Bill Stephenson
I was browsing Perl.com and read a bit of Larry Wall's State of the Onion. In it he mentions, It has some issues, but in the long run JavaScript might actually turn out to be a decent platform for running Perl 6 on. What does that mean? -- Bill Stephenson -- To unsubscribe, e-mail: [EMAIL

Perl 6

2004-02-02 Thread Dan Brow
Any one know when perl 6 will be released for production use? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

Re: Perl 6

2004-02-02 Thread Ricardo SIGNES
* Dan Brow [EMAIL PROTECTED] [2004-02-01T18:43:15] Any one know when perl 6 will be released for production use? No, no one knows. For production use, it is still years away. -- rjbs pgp0.pgp Description: PGP signature

RE: Perl 6

2004-02-02 Thread Thomas Bätzler
Dan Brow [EMAIL PROTECTED] Any one know when perl 6 will be released for production use? I doubt anybody on this list will be able to give you anything else but when it's done as the answer. Thomas -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: Perl 6

2004-02-02 Thread James Edward Gray II
On Feb 1, 2004, at 5:43 PM, Dan Brow wrote: Any one know when perl 6 will be released for production use? Perl 6 is still largely in the design phase. However, if you're looking for a certain functionality with Perl, are you sure Perl 5 doesn't do what you need? James -- To unsubscribe, e

Re: Perl 6

2004-02-02 Thread Dan Brow
Not looking for any specific features, just a little curious. On Mon, 2004-02-02 at 09:57, James Edward Gray II wrote: On Feb 1, 2004, at 5:43 PM, Dan Brow wrote: Any one know when perl 6 will be released for production use? Perl 6 is still largely in the design phase. However

Re: When is Perl 6 coming out?

2003-11-16 Thread Rob Dixon
Randal L. Schwartz wrote: Rob == Rob Dixon [EMAIL PROTECTED] writes: Km i am just curious -- is perl 6 coming with a compiler ? Why would they remove a feature already available since Perl 1? Rob I think you and I both know what Km means by a 'compiler'. No. I don't we can possibly

Re: When is Perl 6 coming out?

2003-11-16 Thread Randal L. Schwartz
Rob == Rob Dixon [EMAIL PROTECTED] writes: Rob Just to pick the remainder of your nits, a compiler traditionally Rob creates an object file. That's only *one* meaning of the word. And it's the meaning least appropriate in the Perl world. :) -- Randal L. Schwartz - Stonehenge Consulting

Re: When is Perl 6 coming out?

2003-11-15 Thread Randal L. Schwartz
Rob == Rob Dixon [EMAIL PROTECTED] writes: Km i am just curious -- is perl 6 coming with a compiler ? Why would they remove a feature already available since Perl 1? Rob [snip] Rob I think you and I both know what Km means by a 'compiler'. No. I don't we can possibly know precisely what

Re: When is Perl 6 coming out?

2003-11-15 Thread Paul Johnson
On Sat, Nov 15, 2003 at 11:19:44AM -0800, Randal L. Schwartz wrote: Rob == Rob Dixon [EMAIL PROTECTED] writes: Km i am just curious -- is perl 6 coming with a compiler ? Why would they remove a feature already available since Perl 1? Rob [snip] Rob I think you and I both know what

Re: When is Perl 6 coming out?

2003-11-14 Thread Randal L. Schwartz
Km == Km [EMAIL PROTECTED] writes: Km i am just curious -- is perl 6 coming with a compiler ? Why would they remove a feature already available since Perl 1? Perl has *always* been compiled. Recent Perls even let you get at it a bit easier. -- Randal L. Schwartz - Stonehenge Consulting

Re: When is Perl 6 coming out?

2003-11-14 Thread Rob Dixon
Randal L. Schwartz wrote: : Km == Km [EMAIL PROTECTED] writes: Km i am just curious -- is perl 6 coming with a compiler ? Why would they remove a feature already available since Perl 1? [snip] I think you and I both know what Km means by a 'compiler'. Did your first train ride come

Re: When is Perl 6 coming out?

2003-11-13 Thread km
Hi all, i am just curious -- is perl 6 coming with a compiler ? thanks, regards, KM On Wed, Nov 12, 2003 at 07:53:17PM -0800, Randal L. Schwartz wrote: Dan == Dan Anderson [EMAIL PROTECTED] writes: Dan That doesn't make me think very highly of O'Reilly if they /already/ Dan have a copy

Re: When is Perl 6 coming out?

2003-11-13 Thread R. Joseph Newton
of O'Reilly if they /already/ have a copy of a book on Perl 6 in stores. You object to the idea of hitting the ground running? Joseph -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: When is Perl 6 coming out?

2003-11-13 Thread Wiggins d Anconia
Please don't top post... Hi all, i am just curious -- is perl 6 coming with a compiler ? This is a rather vague post, how do you really mean? Essentially it is just not that simple, which is why the book is a good resource for people to find out what Perl 6 is really all about

Re: When is Perl 6 coming out?

2003-11-13 Thread Dan Anderson
You object to the idea of hitting the ground running? No...actually I replied to another poster on this matter. Sometimes computer books come out based on an Alpha or Beta version -- which is nice unless there have been significant changes, in which case it can be a confusing waste of money.

RE: When is Perl 6 coming out?

2003-11-13 Thread Thomas Bätzler
km [EMAIL PROTECTED] asked: i am just curious -- is perl 6 coming with a compiler ? That depends on your definition of compiler. It certainly has a compiler that creates byte code, just as all of the current Perl versions. I don't know wether it will have a compiler like PerlEx bundled. What

Re: When is Perl 6 coming out?

2003-11-13 Thread Dan Anderson
Hi all, i am just curious -- is perl 6 coming with a compiler ? thanks, regards, KM Yup, and from what somebody else posted it looks to be sweet: http://www.parrotcode.org/ -Dan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

When is Perl 6 coming out?

2003-11-12 Thread Dan Anderson
I saw a book on Perl 6 but I didn't think it was out yet. When is it coming out, and will it support code from 5.0+? Thanks, Dan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: When is Perl 6 coming out?

2003-11-12 Thread Hanson, Rob
. and will it support code from 5.0+? Yes. Rob -Original Message- From: Dan Anderson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 10:54 AM To: Perl Beginners Subject: When is Perl 6 coming out? I saw a book on Perl 6 but I didn't think it was out yet. When is it coming out

Re: When is Perl 6 coming out?

2003-11-12 Thread Wiggins d Anconia
I saw a book on Perl 6 but I didn't think it was out yet. When is it coming out, and will it support code from 5.0+? The standard OSS answer probably applies here, it will be out, when its out... I assume you probably saw O'Reilly's Perl 6 Essentials? http://www.oreilly.com/catalog

RE: When is Perl 6 coming out?

2003-11-12 Thread Dan Anderson
if they /already/ have a copy of a book on Perl 6 in stores. -Dan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: When is Perl 6 coming out?

2003-11-12 Thread Randal L. Schwartz
Dan == Dan Anderson [EMAIL PROTECTED] writes: Dan That doesn't make me think very highly of O'Reilly if they /already/ Dan have a copy of a book on Perl 6 in stores. Quite the contrary, I'll suggest. The people who wrote the Perl 6 book are deeply involved in the core of creating Perl 6. It's

Re: When is Perl 6 coming out?

2003-11-12 Thread Dan Anderson
O'Reilly is very smart for getting a Perl6 book by key people out there. Nothing to be negative about it. My apologies then. I thought it might be the *final* book -- i.e. half bake -- like all too many computer books which come out based on alpha and beta versions. -Dan -- To unsubscribe,

Re: Perl 6 (was: Re: Confusion on @array vs $array[] vs $array)

2002-12-20 Thread Todd W
Fliptop [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... [reply cc'd to list] On Thu, 19 Dec 2002 at 06:23, Rob Richardson opined: RR:What is the advantage of these changes? RR:When is Perl 6 due out? RR:Do those links you provided desc

Re: Perl 6 (was: Re: Confusion on @array vs $array[] vs $array)

2002-12-20 Thread Todd W
Fliptop [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... [reply cc'd to list] On Thu, 19 Dec 2002 at 06:23, Rob Richardson opined: RR:What is the advantage of these changes? RR:When is Perl 6 due out? RR:Do those links you provided desc

Re: Perl 6 (was: Re: Confusion on @array vs $array[] vs $array)

2002-12-19 Thread fliptop
[reply cc'd to list] On Thu, 19 Dec 2002 at 06:23, Rob Richardson opined: RR:What is the advantage of these changes? RR:When is Perl 6 due out? RR:Do those links you provided describe all the differences we will see in RR:Perl 6? i'm no authority on perl 6, so i can't answer any of your

RE: Setting a Variable to String with \n? -- Perl 6

2002-04-25 Thread Gary Hawkins
This evidently is going to be addressed in Perl6 (with respect to here-docs). cf. http://dev.perl.org/perl6/apocalypse/2 Pretty entertaining stuff. Something uncanny about it. Cool to watch a programming language being designed or influence it. ... we won't make the mistake of

RE: Perl 6?

2002-04-05 Thread Conrad, Bill (ThomasTech)
Hi All I have been reading this Perl 6 thread and it has brought me a laugh or two as I thought about my career. I have been a programmer for more then 40 years. The first computer I used you programmed by wiring boards with jumper wires. This was upgraded to one that was programmed one

Re: Perl 6?

2002-04-04 Thread Elias Assmann
On Thu, 4 Apr 2002, Jenda Krynicky wrote: Ah well ... it will HURT. I'm sure I'll envy the newcomers. Since it'll take ages to get used to the new $@% meaning and the new operators. Just out of interest: were the changes between the last Perl versions equally drastic? (I'm thinking of 4-5 or

Re: Perl 6?

2002-04-04 Thread Chas Owens
car and see how well it runs. Perl 6 is basically a complete redesign _because_ of the problems with not making Perl 5 a radical enough change. -- Today is Prickle-Prickle the 21st day of Discord in the YOLD 3168 This statement is false. Missile Address: 33:48:3.521N 84:23:34.786W

RE: Perl 6?

2002-04-04 Thread Nikola Janceski
to emulate it. 8^) -Original Message- From: Chas Owens [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 10:20 AM To: Elias Assmann Cc: Beginners (E-mail) Subject: Re: Perl 6? On Thu, 2002-04-04 at 08:55, Elias Assmann wrote: On Thu, 4 Apr 2002, Jenda Krynicky wrote

RE: Perl 6?

2002-04-04 Thread Chas Owens
On Thu, 2002-04-04 at 12:06, Nikola Janceski wrote: I disagree... the changes from Perl 4 to Perl 5.500?? were so much that I did have to re-write almost all my works, (the small ones were spared). The reason why I had to re-write it was that there were some subtle syntax changes, but mainly

Perl 6?

2002-04-03 Thread Nikola Janceski
I just found out that Perl 6 is going to be mainly OO (object oriented for you beginners). Can someone give me a direct URL of where I can find what is really going to happen? I do lots of Perl programming and I really want to determine if this is going to be a good thing, or bad. I really don't

RE: Perl 6?

2002-04-03 Thread Hanson, Robert
Here is the dev site. http://dev.perl.org/perl6/ The Apocalypses are written by Larry Wall and describe the way things will work in Perl 6, the Exegeses are written by Damian Conway where he gives examples of what Larry is taking about. The RFC's are proposed changes submitted by the Perl

Re: Perl 6?

2002-04-03 Thread Chas Owens
On Wed, 2002-04-03 at 16:09, Nikola Janceski wrote: I just found out that Perl 6 is going to be mainly OO (object oriented for you beginners). Can someone give me a direct URL of where I can find what is really going to happen? I do lots of Perl programming and I really want to determine

Re: Perl 6?

2002-04-03 Thread Chas Owens
On Wed, 2002-04-03 at 16:28, Chas Owens wrote: On Wed, 2002-04-03 at 16:09, Nikola Janceski wrote: I just found out that Perl 6 is going to be mainly OO (object oriented for you beginners). Can someone give me a direct URL of where I can find what is really going to happen? I do lots

RE: Perl 6?

2002-04-03 Thread Nikola Janceski
It has also been told to me that Perl 6 will have a command line arg to run scripts written for older Perl releases (ie. 5.6.1). Does that mean if I wish to enhance/modify some code that I might as well re-write it for OO in Perl 6? And now all my syntax highlight patterns for my editor (nedit

Re: Perl 6?

2002-04-03 Thread Jenda Krynicky
From: Chas Owens [EMAIL PROTECTED] On Wed, 2002-04-03 at 16:09, Nikola Janceski wrote: I just found out that Perl 6 is going to be mainly OO (object oriented for you beginners). Can someone give me a direct URL of where I can find what is really going to happen? I do lots of Perl

RE: Perl 6?

2002-04-03 Thread Chas Owens
On Wed, 2002-04-03 at 16:47, Nikola Janceski wrote: It has also been told to me that Perl 6 will have a command line arg to run scripts written for older Perl releases (ie. 5.6.1). Does that mean if I wish to enhance/modify some code that I might as well re-write it for OO in Perl 6

RE: Perl 6?

2002-04-03 Thread Timothy Johnson
, April 03, 2002 2:05 PM To: Beginners (E-mail) Subject: Re: Perl 6? From: Chas Owens [EMAIL PROTECTED] On Wed, 2002-04-03 at 16:09, Nikola Janceski wrote: I just found out that Perl 6 is going to be mainly OO (object oriented for you beginners). Can someone give me a direct URL of where I

Re: Perl 6?

2002-04-03 Thread Chas Owens
On Wed, 2002-04-03 at 17:04, Jenda Krynicky wrote: From: Chas Owens [EMAIL PROTECTED] On Wed, 2002-04-03 at 16:09, Nikola Janceski wrote: I just found out that Perl 6 is going to be mainly OO (object oriented for you beginners). Can someone give me a direct URL of where I can find

Win32 Perl editors (was: Perl 6?)

2002-04-03 Thread David Gray
For all you win32 perl hackers, I've been using a really cool editor called Code-Genie: http://code-genie.com/ for about a month now, which allows customizable nested syntax highlighting! I definitely recommend it, and I'll post my syntax customization file if anyone's interested. Cheers,