Re: XOR does not work that way.

2009-06-23 Thread Brandon S. Allbery KF8NH
On Jun 22, 2009, at 19:12 , Minimiscience wrote: On Jun 22, 2009, at 5:51 PM, Damian Conway wrote: Perl 6's approach to xor is consistent with the linguistic sense of 'xor' ("You may have a soup (x)or a salad (x)or a cocktail"), and also with the IEEE 91 standard for logic gates. I don't th

Re: negative index in perl6 array

2009-06-23 Thread Matthew Walton
On Sat, Jun 20, 2009 at 12:07 PM, Chas. Owens wrote: > Hmm, I can't get [user-defined array indexes][1] working, and those > are a prerequisite for mixing subscripts (you can't mix normal and > user-defined indexes if you can't create user-defined indexes).  I > took a quick look at the tests and c

[perl #66890] [BUG] map accepts lambda-param spillover, for doesn't -- inconsistency in Rakudo?

2009-06-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66890] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66890 > rakudo: say (map -> $a, $b { $a }, 1..5).perl; for 1..5 -> $a, $b {}[12:05] rakudo

[perl #66892] [BUG] cannot return an Array with Strs from a sub that declares a return type of Array of Str in Rakudo

2009-06-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66892] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66892 > rakudo: sub foo(--> Array of Str) { my Str @a = ; @a }; foo rakudo 10f223: OUTPUT«Use

[perl #66886] [BUG] Null PMC access when accessing a non-value of an enum in Rakudo

2009-06-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66886] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66886 > rakudo: enum A ; say A::c rakudo 10f223: OUTPUT«Null PMC access in invoke() [...] * ma

Re: Trying to install Rakudo

2009-06-23 Thread Ron Savage
Hi Lyle Thanx for the reply. On Tue, 2009-06-23 at 10:34 +0100, Lyle wrote: > Hi Ron, > > > svn: OPTIONS of 'https://svn.parrot.org/parrot/trunk': could not connect > to server (https://svn.parrot.org) > > Is the problem. It comes from the line:- > system(qw(svn checkout -r), $required , >

[perl #66888] [BUG] texas quotes do not nest properly in q<<>> strings

2009-06-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66888] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66888 > rakudo: say q<< <> >> rakudo 10f223: OUTPUT«Statement not terminated properly at line

[perl #66882] [BUG] Null PMC access when define multi sub with builtin operator

2009-06-23 Thread via RT
# New Ticket Created by Hojung Yoon # Please include the string: [perl #66882] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66882 > at rev: 10f2235028194deddf3db350b5a4a5208484ac09 relative ticket: [perl #65638] it's url:

r27182 - docs/Perl6/Spec/S32-setting-library

2009-06-23 Thread pugs-commits
Author: masak Date: 2009-06-23 13:57:17 +0200 (Tue, 23 Jun 2009) New Revision: 27182 Modified: docs/Perl6/Spec/S32-setting-library/Str.pod Log: [S32/Str] Added Int variants to index/rindex/substr There has to be a way to send in an Int to these Str methods. Arguably, StrPos and StrLen are not

Re: Trying to install Rakudo

2009-06-23 Thread Lyle
Hi Ron, svn: OPTIONS of 'https://svn.parrot.org/parrot/trunk': could not connect to server (https://svn.parrot.org) Is the problem. It comes from the line:- system(qw(svn checkout -r), $required , qw(https://svn.parrot.org/parrot/trunk parrot)); in build/gen_parrot.pl Which runs the system

[perl #66878] [BUG] Null PMC access when attempt to construct from non-existent class

2009-06-23 Thread via RT
# New Ticket Created by Hojung Yoon # Please include the string: [perl #66878] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66878 > at revision: 10f223 and at release version #18. > my $o = IO.new; # works > my $o = A.ne