-
as seen on Stack Overflow
- Search for 'Stack Overflow'
What is the current state of Perl6, is it production-ready ?
Where do we stand right now ?
There are many programmers curious about the current progress of Perl6.
There are also two other topics open on on reddit and perlmonks.org/?node_id=835419 about this.
>>> More
-
as seen on Programmers
- Search for 'Programmers'
Learning Perl 6 and had trouble to understand following Perl 6 one liner.
version of Perl 6 - rakudo-star: stable 2014.04 (bottled)
This works fine, array/list is sorted
[njia@mb-125:~] : perl6 -e 'say [2443,5,33, 90, -9, 2, 764].sort'
-9 2 5 33 90 764 2443
But this does not sort the array/list…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello! Can someone tell me, why the "opendir" doesn't work?
#!/usr/bin/env perl6
use v6;
my $file = 'Dokumente/test_file';
if ( my $fh = open $file, :r ) {
for $fh.lines -> $line {
say $line;
}
} else {
say "Could not open '$file'";
}
my $dir = 'Dokumente';
my $dh = opendir…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Trying the -v switch, I get the parrot svn revision:
$ perl6 -v
This compiler is built with the Parrot Compiler Toolkit, parrot revision 45822.
but how do I know the rakudo version, either a vx.xx or {some-git-hash}?
Thanks,
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
If a specific release date is not available (as I suspect it is not), can you provide resources for tracking how close it is to the desired feature set that allows release.
I'm not necessarily asking for a percentage gauge, or X of Y features completed list. A list of bugs marked in whichever section…
>>> More