Perl 6 developers will attempt to make a Version 1.0 release by Christmas 2015
1–10 of 148 posts
Re: Perl 6 developers will attempt to make a Version 1.0 release by Christmas 2015
#2Re: Perl 6 developers will attempt to make a Version 1.0 release by Christmas 2015
#3Re: Perl 6 developers will attempt to make a Version 1.0 release by Christmas 2015
#4I think there's a good chance that Perl6 will not only become 'relevant in the large', once again, but also, once again, be a driving force in the overall improvement of our industry.
Re: Perl 6 developers will attempt to make a Version 1.0 release by Christmas 2015
#5Re: Perl 6 developers will attempt to make a Version 1.0 release by Christmas 2015
#615 years late...
Do people no longer write code? Because if they do, some of them might might choose to use Perl 6 for that, and that's all the success a programming language can hope for.
I see no reason why Perl 6 can't find its niche among people who prefer the Perlish over the Pythonic way to approach problems, but want a modern, consistent, cruft-free language (which Perl 5 is not).
Re: Perl 6 developers will attempt to make a Version 1.0 release by Christmas 2015
#7I hate to repeat a comment of mine, but for the sake of emphasizing just how different Perl 6 is, here's a version of Fibonacci in Perl 6:
subset NonNegativeInt of Int where * >= 0;
proto fib (|) is cached returns NonNegativeInt {*}
multi fib (0) { 0 }
multi fib (1) { 1 }
multi fib (NonNegativeInt $n) { fib($n - 1) + fib($n - 2) }
say fib(100)
Edit: Another good recent talk is "Adventures in Perl 6 Asynchrony," which shows off promise combinators, channels, and supplies: http://jnthn.net/papers/2014-yapceu-async.pdfRe: Perl 6 developers will attempt to make a Version 1.0 release by Christmas 2015
#8Re: Perl 6 developers will attempt to make a Version 1.0 release by Christmas 2015
#9As I said over on perl.org: From the bottom of my heart, thank you. I have been keenly looking forward to this for a long, long time. I think there's a good chance that Perl6 will not only become 'relevant in the large', once again, but also, once again, be a driving force in the overall improvement of our industry.
Re: Perl 6 developers will attempt to make a Version 1.0 release by Christmas 2015
#1015 years late...
Late for what, exactly? Do people no longer write code? Because if they do, some of them might might choose to use Perl 6 for that, and that's all the success a programming language can hope for. I see no reason why Perl 6 can't find its niche among people who prefer the Perlish over the Pythonic way to approach problems, but want a modern, consistent, cruft-free language (which Perl 5 is not).
I'm not against Perl or its evolution, but I don't see the point to learn this today when you have so many better scripting language alternatives with established community and rich libraries available.