On Mon Jul 27 08:11:54 2009, masak wrote:
> rakudo: sub foo(&foo = &foo) { say "OH HAI"; foo }; foo
> rakudo 4c31fb: OUTPUT«Null PMC access in isa()in sub foo [...]
> pmichaud: it should just alert you
> hah!
> * masak submits rakudobug
> rakudo: sub foo(&foo = &foo) {}; foo
> rakudo 4c31fb:
On Mon Aug 31 06:50:14 2009, masak wrote:
> rakudo: module A::B; A::B::foo
> rakudo 0d4fe0: OUTPUT«invoke() not implemented in class
> 'Undef' [...]
This is a dupe of something I fixed a while back...in latest Rakudo:
> module A::B; A::B::foo
Can not find sub A::B::foo
Much more awesome. :-) W
On Fri Oct 09 02:11:58 2009, masak wrote:
> rakudo: class A { method foo() {} }; A.new.foo(42)
> rakudo daf221: OUTPUT«positional inside named args at
> position 2in method A::foo [...]
> * masak submits LTA rakudobug
>
> I know that the error is technically accurate, but it's opaque for the
>
On Tue Nov 17 07:59:25 2009, masak wrote:
> rakudo: say (abs(412).WHAT) # here's one for you, masak
> rakudo 7347ec: Use of type object as value0
> diakopter: nice catch!
> * masak submits rakudobug
Works in latest Rakudo and the test passes and is run...
ok 50 - abs(x).WHAT parses as x.abs.
On Sun Nov 29 12:25:14 2009, masak wrote:
> rakudo: class A { method postcircumfix:<{ }>() {} }; my &r =
> {;}; if 0 { if 0 { my $a } }
> rakudo 7347ec: Redeclaration of variable $a
> this is worse than I first thought.
> now there are not even two declarations of the variable.
> * masak amend
On Sun Dec 20 13:52:01 2009, masak wrote:
> rakudo: class A { method foo($_: $b) {} }; A.new.foo(1, 2)
> rakudo 8dc189: ( no output )
> locally, "Too many positional parameters passed; got 3 but
> expected 2"
> (which is fine, but now...)
> rakudo: class A { method foo($_: %b) {} }; A.new.foo
On Mon Mar 01 06:21:04 2010, masak wrote:
> S02-literals/char-by-number.t has that in a eval_dies_ok
> test master just seems to shrug and get on with life instead of
> dying.
> rakudo: say "\123"
> rakudo 588a34: OUTPUT«\123»
> oh noes
> alpha: "\123"
> alpha 30e0ed: OUTPUT«\123 form de
On Fri Mar 19 06:30:17 2010, masak wrote:
> If you want to write Foo::lol you should mark the method "our"
> ok.
> But Rakudo doesn't support that yet.
> rakudo: package A { sub f { say "OH HAI" } }; A::f
> rakudo 1e9aa0: OUTPUT«OH HAI»
> ...erm. I'm not sure that's quite right either. :-/
>
# New Ticket Created by Richard Hainsworth
# Please include the string: [perl #74518]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=74518 >
See #perl6 20 April
The problem below appears to be with .perl, not with assigning
On Wed Mar 10 23:22:55 2010, stefa...@cox.net wrote:
> $ perl6 -e 'say Foo::x'
> Null PMC access in invoke()
For a couple of weeks it's:
> say Foo::x
Can not find sub Foo::x
A test was provided for a previous dupe ticket, so just closing this one.
Thanks,
Jonathan
On Wed Mar 17 08:47:52 2010, masak wrote:
> rakudo: sub foo(:$b, $a) {}
> rakudo d0f934: ( no output )
> std: sub foo(:$b, $a) {}
> std 30116: OUTPUT«[31m===[0mSORRY![31m===[0mCan't put
> required parameter after variadic parameters [...] FAILED 00:01 108m»
> * masak submits rakudobug
N
On Tue Mar 09 08:41:05 2010, moritz wrote:
> On Wed Jul 15 00:29:12 2009, szab...@gmail.com wrote:
> > On Windows:
> >
> > "\Program Files\Git\bin\git.exe" clone git://github.com/rakudo/rakudo.git
> >
> > C:\rakudo>perl Configure.pl
> >
> > Reading configuration information from parrot/parrot_co
On Wed Sep 23 14:00:34 2009, thewall...@gmail.com wrote:
> [13:39] rakudo: class Y {has $.z}; subset X of Y where
{.z ==
> 0}; my $q = 4; say $q ~~ X;
> [13:39] <+p6eval> rakudo 0eaf62: OUTPUT«Method 'z' not found for
invocant of
> class 'Int'»
> [13:40] It checks the where {} before checking th
On Wed Sep 30 06:14:12 2009, masak wrote:
> rakudo: my %h = '' => 3; sub foo(:$) { say 5; }; foo |%h
> rakudo c8181a: OUTPUT«FixedIntegerArray: index out of
> bounds!in sub foo [...]
> yet another bug... masak? :-)
> * masak submits
Now:
> my %h = '' => 3; sub foo(:$) { say 5; }; foo |%h
5
G
# New Ticket Created by Richard Hainsworth
# Please include the string: [perl #74516]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=74516 >
The syntax my ($x,@f) generates a two dimensional array in @f.
Alpha produces wha
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #74520]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=74520 >
rakudo: class A { my method foo() { say "OH HAI" }; A::foo(A) }
rakudo 027ff4: OUTPUT«
On Mon, 12 Apr 2010, Moritz Lenz wrote:
Am 12.04.2010 03:47, schrieb Dave Rolsky:
On Sun, 11 Apr 2010, Moritz Lenz wrote:
I've planned to add such a module to the Perl 6 spec, but some comments
on #perl6 suggested it should be kept out of core to prevent bloat.
Still if the overall opinion is
On Fri, 16 Apr 2010, pugs-comm...@feather.perl6.nl wrote:
+=head2 Semi-internal methods
+
+[This section is severely conjectural]
+
+For efficient implementation of arithmetics on C objects, two more
+methods are exposed:
+
+$d.daycount
+Date.new-from-daycount(Int $daycount)
I'd _reall
# New Ticket Created by Alexandru Nedelcu
# Please include the string: [perl #74524]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=74524 >
# OS X 10.6.2 / Intel Core 2 Duo
~ $ uname -a
Darwin miezu-mac.lan 10.2.0 Darwin K
# New Ticket Created by Ira Byerly
# Please include the string: [perl #74526]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=74526 >
Hello,
I noticed finanalyst having problems with Rakudo on #perl6 on 2010-04-20:
05:36 f
masak: Your ticket is wrong.
74520
a bug in a rakudobug!
* masak looks
The bug is not that it didn't find the sub
It shoudln't
The bug is it gave an internals error rather than a good one.
I guess more succinct is:
rakudo: A::foo # right error
rakudo 027ff4: OUTPUT«Can not find sub A::foo
# New Ticket Created by Solomon Foster
# Please include the string: [perl #74530]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=74530 >
colomon: rakudo: (-<<(1..10)).perl.say
p6eval: rakudo 5a0581: OUTPUT«maximum recursion
"Truth is what stands the test of experience."
- Albert Einstein
On behalf of the Parrot team, I'm proud to announce Parrot 2.3.0 "Samoan
Lory." Parrot (http://parrot.org/) is a virtual machine aimed at running
all dynamic languages.
Parrot 2.3.0 is available on Parrot's FTP site, or follo
On Tue, Apr 20, 2010 at 10:59 AM, Dave Rolsky wrote:
> I'd _really_ like to see this be based on Rata Die, which is January 1,
> 0001. See http://en.wikipedia.org/wiki/Rata_Die
>
To be clear, that's specifically January 1, 1 CE in the retrojected
Gregorian calendar, which is the same day as Janu
24 matches
Mail list logo