Larry Wall Unveils Perl 6.0.0
21–30 of 336 posts
Re: Larry Wall Unveils Perl 6.0.0
#22If perl 6 turns out to be useful for the larger software engineering community (and is more widely adopted), this is wonderful. If not, then we still have another interesting language in the great river of interesting tech things.
Either way, the perl community will continue to do what it does best!
Re: Larry Wall Unveils Perl 6.0.0
#23Perl, never stop being you
Re: Larry Wall Unveils Perl 6.0.0
#24Seems too little too late. Is Perl still relevant in 2015? What would you build in Perl today that you wouldn't build in another language instead? I used to be a big fan of Perl but it seems to have fallen behind the times, I doubt Perl 6 is enough to catch up.
But I don't really want to give a laundry list of features, because that alone is not a compelling enough reason to pick a language (P6 obviously needs to develop an ecosystem). As someone who appreciates both OO and FP, both static and dynamic typing, P6 really hits a sweet spot. I encourage you to look at Perl 6 as a new language with the feel of Perl but which solves many modern problems.
Re: Larry Wall Unveils Perl 6.0.0
#25> ++; # An anonymous state variable, for very fast loops Perl, never stop being you
Re: Larry Wall Unveils Perl 6.0.0
#26Junctions and autothreading seem to be importing the core of APL/J: http://doc.perl6.org/type/Junction (I'm randomly scanning http://faq.perl6.org )
Re: Larry Wall Unveils Perl 6.0.0
#27Perl is for poetry. For seeing the impossible and going back.
Re: Larry Wall Unveils Perl 6.0.0
#28Re: Larry Wall Unveils Perl 6.0.0
#29Larry Wall Unveils Perl 6 and no comments on hacker news an hour later. That's the new headline that sums up Perl: an anachronistic programming language that may never recover from the perl 5->6 decade long 'freeze'. Also the language is crazy to write substantial programs in!
Don't worry, within 24 hours there will be hundreds of comments all explaining how Perl 6 is of no interest to anyone.
Perl 6 needs to find a problem that it can solve well. Perhaps a great web framework?
Re: Larry Wall Unveils Perl 6.0.0
#30Um, this has been there for decades:
$a = '123';
$b = '123.0';
print $a == $b ? 'y' : 'n'; # prints y
print $a eq $b ? 'y' : 'n'; # prints n