in reply to From Perl 5.10 to Perl 6
Simply said, the difference between 5.8 and 5.10 is small. There are some nifty new features but if you don't write "use 5.10" in your code you can't even use them.
perl 6 on the other hand is a mayor rehaul of the language, even perl4 to perl5 was a much smaller step. Your code won't run in perl6 without some rewrite, period. For example the way how sigils ($,@,%) work changes.
But that doesn't mean your perl5 code won't run anymore when perl6 is here, because perl5 will still be available as one of the languages (together with perl6) that all compile down to a virtual machine called parrot. If all goes according to plans you should be able to mix perl5, perl6 and other languages in your code.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: From Perl 5.10 to Perl 6
by JavaFan (Canon) on Dec 01, 2008 at 11:08 UTC | |
by moritz (Cardinal) on Dec 01, 2008 at 11:13 UTC | |
by jethro (Monsignor) on Dec 01, 2008 at 14:21 UTC | |
|
Re^2: From Perl 5.10 to Perl 6
by pobocks (Chaplain) on Dec 01, 2008 at 06:04 UTC |