[perl #83484] [TODO] Implement s!foo!bar! and other non-slash separators for m and s in Rakudo

2011-02-06 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #83484] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=83484 jaffa4 Is it possible to change / as a separator? masak rakudo: $_ = heffo; s!ff!ll!;

[perl6/specs] a56ffc: make ?/* semantics consistently Nil/()

2011-02-06 Thread noreply
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: a56ffc33ac5152aa4dba758f167048a82467d9ab https://github.com/perl6/specs/commit/a56ffc33ac5152aa4dba758f167048a82467d9ab Author: Larry Wall la...@wall.org Date: 2011-02-06 (Sun, 06 Feb 2011) Changed paths: M

[perl #83508] [BUG] Failed ()? captures should be Nil in Rakudo (nqp-rx)

2011-02-06 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #83508] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=83508 dalek specs: a56ffc3 | larry++ | S (2 files): dalek specs: make ?/* semantics

[perl #83510] [BUG] Rakudo doesn't find [+], or any operator with both bracketed infix and hyper in it

2011-02-06 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #83510] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=83510 jnthn std: 1 [[[+]]] 2 p6eval std 625303c: OUTPUT«ok 00:01 119m␤» jnthn rakudo: say 1

[perl #83512] [BUG] Can't declare and list-bind in Rakudo

2011-02-06 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #83512] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=83512 masak rakudo: my %info = x = 1, y = 2; my ($x, $y) := %info; say ($x, $y).perl p6eval

Re: Perl6 regexes and UTS#18

2011-02-06 Thread Helmut Wollmersdorfer
Tom Christiansen wrote: Has anybody specifically looked at how Perl6 regexes might map to the various requirements of UTS#18, Unicode Regular Expressions? http://unicode.org/reports/tr18/ Roughly Perl6 supports Level 2 (I did a fast check of UTS#18 and the specs). I ask because to my