What features of Perl 6 are you the most excited about? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:50:56Z http://stackoverflow.com/feeds/question/170268 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about 17 What features of Perl 6 are you the most excited about? Adam Bellaire 2008-10-04T12:38:15Z 2009-07-03T08:00:37Z <p>Perl 6 has really shaped up in terms of which features we can expect to see implemented in the final language, when it comes. Some of them are already available through <strong>Perl 6</strong> modules for Perl 5 from CPAN. So which features are most compelling, exciting, nifty, eagerly awaited, etc.?</p> <p>Please try to limit yourself to one feature per answer.</p> <p><strong>UPDATE:</strong> Added a table of answers, sorted by current votes as of this edit.</p> <h2>Table of Answers (so far):</h2> <ul> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170482">Grammars</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170356">Rules</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170339">Parameter Lists</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170364">Macros</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170342">Junctions</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170400">Subtypes</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170488">Real OO</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170782">Operators</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#172361">Extensibility</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170339">Lazy Lists</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170347">Multimethods</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170412">Good Unicode Support</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170288">Parrot</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170384">Roles</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#175200">Chained Comparisons</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#170906">Release Date</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about#175942">November</a> (a wiki using Perl 6)</li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about#196990">Atomic Blocks</a></li> <li><a href="http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about#197002">Concurrency</a></li> <li><a href="#698554" rel="nofollow">Defined-or ( <code>//</code> ) operator</a></li> </ul> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170288#170288 9 Answer by Thilo for What features of Perl 6 are you the most excited about? Thilo 2008-10-04T12:54:43Z 2008-10-09T13:53:36Z <p>Not a feature of Perl 6 (the language) as such, but I am most excited about the Parrot VM.</p> <p>It will (fingers crossed) allow efficient execution of code in Perl 6 and other dynamic languages, enable them to share libraries, and give the Hotspot VM (the feature of Java I am most excited about) a run for its money.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170339#170339 10 Answer by Leon Timmermans for What features of Perl 6 are you the most excited about? Leon Timmermans 2008-10-04T13:38:12Z 2008-10-04T13:38:12Z <p>Lazy lists, in all their varieties. They just make a lot of sense in a lot of circumstances.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170342#170342 15 Answer by Leon Timmermans for What features of Perl 6 are you the most excited about? Leon Timmermans 2008-10-04T13:40:19Z 2008-10-04T13:58:07Z <p>Junctions</p> <p>Compare</p> <pre><code>do_something() if $foo == 1 or $foo == 2 or $foo == 4 or $foo == 8 </code></pre> <p>with</p> <pre><code>do_something() if $foo == any(1,2,4,8) </code></pre> <p>The latter is better by any standard.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170347#170347 7 Answer by Leon Timmermans for What features of Perl 6 are you the most excited about? Leon Timmermans 2008-10-04T13:44:28Z 2008-10-04T13:44:28Z <p>Multimethods (and multisubs)</p> <p>Multimethods are like methods, except that the method that is run isn't dependent on the <strong>run-time</strong> type of one variable (aka this), but on multiple. This makes a lot more sense in a lot of situation. Comperators are one, visitor pattern is another.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170356#170356 17 Answer by Leon Timmermans for What features of Perl 6 are you the most excited about? Leon Timmermans 2008-10-04T13:47:12Z 2008-10-04T13:47:12Z <p>Rules. They are regexps on steroids. Being able to break down patterns from a block of line noise to a abstract set of rules is amazingly useful. Not only will it result in code that is more readable and maintainable, but also it will enable easy creation of true domain specific languages (as opposed to evaled hacks).</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170364#170364 15 Answer by Leon Timmermans for What features of Perl 6 are you the most excited about? Leon Timmermans 2008-10-04T13:53:15Z 2008-10-04T20:14:04Z <p>Macros</p> <p>Perl 6 will have macros in the Lisp sense of the word, not the C sense. True macros that have full access to the language itself. It will enable people to extend the language itself in ways that its creators hadn't foreseen.</p> <p>In Lisp it was possible because the syntax was so simple (s-expressions), in Perl 6 it will be possible because macros have full access to the rules engine, enabling them to create completely new syntaxes.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170384#170384 7 Answer by Leon Timmermans for What features of Perl 6 are you the most excited about? Leon Timmermans 2008-10-04T14:09:11Z 2008-10-04T14:09:11Z <p>Roles</p> <p>To some extend roles are similar to Mixins, but with a few differences:</p> <ol> <li>They work during compile time</li> <li>All roles of a class are applied simultaneously.</li> </ol> <p>This will cause a class to fail graciously if the roles define a conflicting method, unlike mixins where one method just overrides the other.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170400#170400 13 Answer by Leon Timmermans for What features of Perl 6 are you the most excited about? Leon Timmermans 2008-10-04T14:16:08Z 2008-10-04T14:16:08Z <p>Subtypes</p> <p>For example you could define a subtype</p> <pre><code>subset EvenNum of Num where { $^n % 2 == 0 } </code></pre> <p>if you now define a variable of type EvenNum, it can only be assigned even numbers</p> <pre><code>my EvenNum $foo = 0; $foo = 1; # TYPE ERROR </code></pre> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170412#170412 10 Answer by Leon Timmermans for What features of Perl 6 are you the most excited about? Leon Timmermans 2008-10-04T14:21:59Z 2008-10-04T14:21:59Z <p>Good Unicode support</p> <p>Perl 6 will not only support Unicode at bytes and codepoints level but also at the graphemes level, unlike all other current programming languages.</p> <p>If you think that's not imporant, think of what happens if you reverse a string that contains graphemes that consist of multiple codepoints.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170482#170482 21 Answer by mpeters for What features of Perl 6 are you the most excited about? mpeters 2008-10-04T15:11:24Z 2008-10-04T15:11:24Z <p>Grammars. Being able to package together groups of regular expressions (Rules) in a way that is resuable for other projects. Need an SQL parser? We've got a grammar for that. Need to parse CSS? We have one for that too.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170488#170488 12 Answer by mpeters for What features of Perl 6 are you the most excited about? mpeters 2008-10-04T15:12:20Z 2008-10-04T15:12:20Z <p>Real, honest to goodness OO. And not just OO, OO with a meta model!</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170782#170782 9 Answer by Axeman for What features of Perl 6 are you the most excited about? Axeman 2008-10-04T18:13:00Z 2008-10-13T17:57:58Z <p>Operators. You can declare your own operators (although it makes sense mostly in mathematics and nearby scopes). I like Rules and Grammars, but operators is one of the neat things they allow. </p> <p>It's not just operator overloading either. C++, Python, Ruby, and others allow you to redefine the existing operators for classes, Perl 6 gives you the ability to create new operators. For example for a matrix x operator, you can define it:</p> <pre><code>proto infix:&lt;_*_&gt; ( @matrix1, @matrix2 ) { ... } </code></pre> <p>And you use them like: </p> <pre><code>my @matrix3 = @matrix1 _*_ @matrix2; </code></pre> <p>There are definitely caveats on using these, but the ability to create syntax that makes sense--not just saves typing--is one cool feature. </p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170896#170896 18 Answer by cjm for What features of Perl 6 are you the most excited about? cjm 2008-10-04T19:29:32Z 2008-10-09T13:44:57Z <p>Parameter lists.</p> <p>Perl 5's parameter handling is one of its weakest points. You can do some nice things, but it's a lot of work.</p> <p>Perl 6 will allow named parameters, default values, call-by-value, and call-by-reference with simple but powerful <a href="http://dev.perl.org/perl6/doc/design/syn/S06.html#Parameters_and_arguments" rel="nofollow">parameter lists</a>.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/170906#170906 6 Answer by Partyzant for What features of Perl 6 are you the most excited about? Partyzant 2008-10-04T19:40:29Z 2008-10-04T19:40:29Z <p>Release date.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/171468#171468 -4 Answer by DGentry for What features of Perl 6 are you the most excited about? DGentry 2008-10-05T04:08:07Z 2008-10-05T04:08:07Z <p>Shipping is a feature, too.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/172361#172361 9 Answer by moritz for What features of Perl 6 are you the most excited about? moritz 2008-10-05T17:59:47Z 2008-10-05T17:59:47Z <p>Extensibility.</p> <p>Rules+grammars, junctions, good OO and so on are really great features, but the essence of Perl 6 is that it is designed for extensibility. We are no super-heroes, we don't know what the future of programming will look like.</p> <p>Which is why you can change the grammar, introduce new types, adapt the meaning of operators to these new types, extend core types, introduce new operators, plug in your own OO system, and do basically everything that you need to do to extend and change the language.</p> <p>Likewise when you introduce a new keyword, you won't break subs or methods of the same (yes, you can call a sub <code>if</code> if you like).</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/175200#175200 8 Answer by Adam Bellaire for What features of Perl 6 are you the most excited about? Adam Bellaire 2008-10-06T17:00:27Z 2008-10-06T17:00:27Z <p><a href="http://dev.perl.org/perl6/rfc/25.html" rel="nofollow">Chained Comparisons</a> will be nice, too.</p> <p>We'll be able to say:</p> <pre><code>if (0 &lt; $x &lt;= 10) { ... </code></pre> <p>instead of:</p> <pre><code>if (0 &lt; $x &amp;&amp; $x &lt;= 10) { ... </code></pre> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/175942#175942 3 Answer by Conrad Schneiker for What features of Perl 6 are you the most excited about? Conrad Schneiker 2008-10-06T20:00:19Z 2008-10-06T20:09:11Z <p>The <a href="http://www.perlfoundation.org/perl6/index.cgi?perl_6" rel="nofollow">Official Perl 6 Wiki</a>. :-) For example, here is its <a href="http://www.perlfoundation.org/perl6/index.cgi?the_long_perl_6_super_feature_list" rel="nofollow">Long Perl 6 Super-Feature List</a>.</p> <p>OK, my serious answer is <a href="http://www.perlfoundation.org/perl6/index.cgi?november" rel="nofollow">November</a>, a wiki implemented in Perl 6. I expect it to eventually lead to a powerful new generation wiki-like {tools and applications}.</p> <p>(Per an earlier reference to the Parrot VM, there's also an <a href="http://www.perlfoundation.org/parrot/index.cgi?parrot" rel="nofollow">Official Parrot Wiki</a>.)</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/196990#196990 3 Answer by brunorc for What features of Perl 6 are you the most excited about? brunorc 2008-10-13T08:17:41Z 2008-10-13T08:17:41Z <p>Atomic blocks.</p> <p>You will be able to run code in the "all or nothing" mode, similar to transactions in the database. And this will be achieved without the need to tamper with some user-managed locks. There will be also the possibility to write a block of code with the "automatic rollback" feature.</p> <p>Such code must not to change the state of any external entity (no read/write). But if one wants to keep the block running without interruption, can still use the "is critical" trait.</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/197002#197002 4 Answer by brunorc for What features of Perl 6 are you the most excited about? brunorc 2008-10-13T08:24:15Z 2008-10-13T08:24:15Z <p>Concurrency.</p> <p>This is a serious boost in the world of SMP machines. The underlying engine (Software Transactional Memory) is common to atomic blocks and threads - so no user locks, just atomic blocks!</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/235590#235590 2 Answer by JDrago for What features of Perl 6 are you the most excited about? JDrago 2008-10-24T23:26:27Z 2008-10-24T23:26:27Z <p>EVERYTHING!!!!!</p> http://stackoverflow.com/questions/170268/what-features-of-perl-6-are-you-the-most-excited-about/698554#698554 0 Answer by wisnij for What features of Perl 6 are you the most excited about? wisnij 2009-03-30T18:50:46Z 2009-03-30T18:50:46Z <p>I won't be able to offer an informed opinion about the more esoteric features until I've had a chance to use them in practice for a while, but right now I can say it would be very nice to have the <code>//</code> and <code>//=</code> operators even in Perl 5. I don't think there's a number large enough to represent the number of times I've typed something like <code>(defined $foo ? $foo : $default)</code>.</p>