Description:
perl6-compiler@perl.org (Moderated)
|
|
|
Rakudo Star 2012.05 released
|
| |
Announce: Rakudo Star - a useful, usable, "early adopter" distribution
of Perl 6
On behalf of the Rakudo and Perl 6 development teams, I'm happy to
announce the May 2012 release of "Rakudo Star", a useful and
usable distribution of Perl 6. The tarball for the May 2012
release is available from <[link]>.... more »
|
|
a much better bug report
|
| |
(so please ignore my initial report, because it was lazily written,
here is the proper bugreport, restated with clarity)
The following loop should iterate infinitely, but it does not:
my @array = 1, 2;
for @array -> $n {
$n.say;
@array.push: $n + 2;
}
say @rray;... more »
|
|
array iterator does not track a growing array
|
| |
...
$ perl6 -v
This is perl6 version 2012.05-15-gdca0fa6 built on parrot 4.4.0
revision RELEASE_4_4_0
<sisar> so here is the same code in perl6 and python:
[link]. While the perl6 the loop terminates,
in pyhton it is an infinite loop. Though both behaviour have their... more »
|
|
sequence deduction tries to convert strings to numbers, should not
|
| |
...
< moritz> r: say ('1a' ... *)[^5]
<+p6eval> rakudo 45679a: OUTPUT«1a 1b 1c 1d 1e»
< moritz> r: say ('1a', '1b' ... *)[^5]
<+p6eval> rakudo 45679a: OUTPUT«Cannot convert string to number:
trailing characters after number in '1⏏b' (indicated by ⏏)
in method Numeric at src/gen/CORE.setting:9058... more »
|
|
excessive errors when foo.pl does not exist
|
| |
...
$ perl6 foo
Error while reading from file: Unable to open filehandle from path 'foo.pl'
current instr.: 'nqp;HLL;Compiler;_block1994' pc 35586
(src/stage2/gen/NQPHLL.pir:136 27) (src/stage2/gen/NQPHLL.pm:1453 )
called from Sub 'nqp;HLL;Compiler;evalfiles' pc 35251
(src/stage2/gen/NQPHLL.pir:134 72) (src/stage2/gen/NQPHLL.pm:1439 )... more »
|
|
Rakudo 2012.05 "MadMongers"
|
| |
Announce: Rakudo Perl 6 compiler development release #52 ("MadMongers")
On behalf of the Rakudo development team, I'm glad to announce the
May 2012 release of Rakudo Perl #52 "MadMongers". Rakudo is an
implementation of Perl 6 on the Parrot Virtual Machine (see <[link]>). The tarball for this release... more »
|
|
|