[perl #64606] A map that works outside of a module doesn't work inside it in Rakudo

2009-04-09 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64606] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64606 > rakudo: say (1,2,3).map: { $_ } rakudo 486694: OUTPUT«123␤» rakudo: module Foo { say

r26167 - docs/Perl6/Spec

2009-04-09 Thread pugs-commits
Author: lwall Date: 2009-04-10 02:44:36 +0200 (Fri, 10 Apr 2009) New Revision: 26167 Modified: docs/Perl6/Spec/S02-bits.pod docs/Perl6/Spec/S03-operators.pod docs/Perl6/Spec/S06-routines.pod Log: Eliminate listop forms of sigils. Modified: docs/Perl6/Spec/S02-bits.pod ==

Re: FYI - modern Muldis D code examples

2009-04-09 Thread Darren Duncan
P.S. Since Daniel cc'd the list with a reply, I will likewise. Daniel Ruoso wrote: Sorry for bitching, but... What exactly is the problem you're trying to solve? I mean, what is so bad about SQL? and how does Muldis D solves it? The very broad answer: It's not so much that SQL is terrible;

[perl #64482] [TODO] Make Range do Positional in Rakudo

2009-04-09 Thread jn...@jnthn.net via RT
On Sun Apr 05 08:58:34 2009, masak wrote: > rakudo: say (1..8)[*-1] > rakudo 0310a3: OUTPUT«elements() not implemented in class > 'Range' [...] > * masak submits rakudobug > Range doesn't understand Positional yet. They understand it sufficiently now to get at least this and slices of ranges ri

[perl #64078] Null PMC access when calling .arity on a non-defined sub in Rakudo

2009-04-09 Thread jn...@jnthn.net via RT
On Sun Mar 22 02:21:47 2009, masak wrote: > rakudo: say &foo.arity > rakudo de786f: OUTPUT«Null PMC access in can()␤current > instr.: '!dispatch_method' pc 17078 (src/builtins/guts.pir:104)␤» > * masak submits rakudobug Now in git 07ed756 just says Failure doesn't have a method .arity instead of

[perl #64332] %hash<> gives an empty result in Rakudo, when it should really give the whole hash

2009-04-09 Thread jn...@jnthn.net via RT
On Tue Mar 31 13:54:23 2009, masak wrote: > rakudo: my %hash = (1 => 2); say "{%hash<>}"; > rakudo 78cb4c: OUTPUT«␤» > hmmm. > bug? > looks like one to me. > my @list = (1,2,3,4); say "{...@list[]}"; > rakudo: my @list = (1,2,3,4); say "{...@list[]}"; > rakudo 78cb4c: OUTPUT«1 2 3 4␤»

[perl #64494] Multiple constraints shouldn't be allowed before a variable in Rakudo

2009-04-09 Thread jn...@jnthn.net via RT
On Mon Apr 06 03:57:36 2009, masak wrote: > rakudo: role Foo {}; role Bar {}; sub baz(Foo Bar $a) {}; say > "should not be alive here before 6.0.0" > rakudo 0310a3: OUTPUT«should not be alive here before 6.0.0␤» > * masak submits rakudobug > > According to

Re: FYI - modern Muldis D code examples

2009-04-09 Thread Daniel Ruoso
Em Qua, 2009-04-08 às 01:04 -0700, Darren Duncan escreveu: > To recap, Muldis D is my new programming language part of whose purpose is to > eventually succeed SQL as the query+DDL language of choice for relational > DBMSs, > in the same manner that Perl 6 is intended to eventually supplant Perl 5

[perl #64602] [BUG] invalid 'but' produces endless loop

2009-04-09 Thread m...@suse.de (via RT)
# New Ticket Created by m...@suse.de # Please include the string: [perl #64602] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64602 > $ perl6 -e '0 but True' [hangs] perl6 -t 1 shows that it does a 'die "The but operator

Re: FYI - modern Muldis D code examples

2009-04-09 Thread Darren Duncan
Hello, This message is an update to my post from yesterday of the same subject. If you don't have it handy, then a copy is archived at http://mm.darrenduncan.net/pipermail/muldis-db-devel/2009-April/23.html . I have significantly updated the Muldis D code samples of yesterday and the new

[perl #64594] You can push strings to attribute arrays typed with Int in Rakudo

2009-04-09 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64594] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64594 > rakudo: class A { has Int @.a is rw }; my $x=A.new; $x.a = (2, 3, 4); say $x.a.perl ra

[perl #64574] [PATCH] Move more functionality from Range.pir to Range.pm

2009-04-09 Thread via RT
# New Ticket Created by Cory Spencer # Please include the string: [perl #64574] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64574 > The attached patch makes the following changes to Range.pir and Range.pm: - Moves !

[perl #64568] Possible parsing bug with map and Z in Rakudo

2009-04-09 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64568] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64568 > rakudo: map { say "$^a - $^b"}, 1..10 Z 1..10 rakudo 6b9755: OUTPUT«No applicable cand

[perl #64566] @a[1..*] adds trailing undef value

2009-04-09 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #64566] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64566 > 23:55 <@moritz_> rakudo: my @a = 1..4; say @a[1..*].perl 23:56 < p6eval> rakudo 6b9755: O