Timothy S. Nelson wrote [on p6l]:
On Tue, 24 Mar 2009, Timothy S. Nelson wrote:
On Mon, 23 Mar 2009, Richard Hainsworth wrote:
Alternatively, if we stay away from animals, then how about something
to do with parallelism, or super-positioning, or even a strange
attractor, since perl6 can be st
On Tue, 24 Mar 2009, Timothy S. Nelson wrote:
On Mon, 23 Mar 2009, Richard Hainsworth wrote:
My choice would be a lion, perhaps one lazing in the sun. The meaning that
it is lazy, but it has raw power when it needs, and is the king of the
jungle.
Is there a way we can also show it t
On Mon, 23 Mar 2009, Richard Hainsworth wrote:
My choice would be a lion, perhaps one lazing in the sun. The meaning that it
is lazy, but it has raw power when it needs, and is the king of the jungle.
Is there a way we can also show it to be impatient and hubristic? :)
Alternatively,
# New Ticket Created by Cory Spencer
# Please include the string: [perl #64096]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64096 >
The following patch adds a Perl 6 version of trim to Any.pm in the
setting.>From 20cb7
> From: Steffen Schwigon [mailto:s...@renormalist.net]
> Why not taking a camel with 6 humps?
>
> Just joking, could not resist. :-)
You want 6 humps?
I'll give you 6 humps!
Check this out:
http://www.athenalab.com/Rakudo_logo.htm
Best regards,
Conrad
Conrad Schneiker
www.AthenaLab.com
Hi,
Cory Spencer (via RT) wrote:
> The following patch adds a Perl 6 version of rand and cis to Any.pm in the
> setting.
Thanks for the patch.
Unfortunately, it doesn't apply cleanly here (at rakudo
748771092a53e8910df4c633567c9a57b090a12e), does it depend on a previous
patch you send?
[...]
>
Hi,
I'm no Cygwin user, but I've heard that copying libparrot.dll to the
Rakudo directory has helped in some cases, maybe that's worth a try.
Cheers,
Moritz
# New Ticket Created by "Martin Berends"
# Please include the string: [perl #64046]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64046 >
Unsure whether the following should work, but it doesn't:
perl6 -e 'enum E ; my E $
# New Ticket Created by Clinton Gormley
# Please include the string: [perl #64060]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64060 >
The attached patch moves capitalize from builtins/any-str.pir to
setting/Any-str.pm,
All,
I'm trying to build Rakudo as a prelude to getting started in development. I'm
trying to build under Cygwin on a Vista-64 system. I'm configuring the system
with ./Configure.pl --gen-parrot. Parrot downloads from svn and builds quite
nicely. I run make and it compiles, but doesn't want
On Mon, Mar 23, 2009 at 09:22, Richard Hainsworth wrote:
> Hats off to the designer of the gimel symbol - the associations with anarchy
> are probably right for perl6. But to be honest, a letter didnt quite inspire
> me. Since, I dont want to criticize without providing other ideas, here are
> som
# New Ticket Created by Bora
# Please include the string: [perl #64054]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64054 >
Hey , I was trying to install Raduko using the instruction from
http://www.perlfoundation.org/
# New Ticket Created by Hojung Yoon
# Please include the string: [perl #64042]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64042 >
"my Type $a" doesn't constraint, while "my $a of Type" does constraint.
# New Ticket Created by Matthew Walton
# Please include the string: [perl #64094]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64094 >
Run this:
perl6 -e "my $x = 'wibble'; $x.subst(/+ $$/, '');"
Watch your processor us
# New Ticket Created by Clinton Gormley
# Please include the string: [perl #64062]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64062 >
'abc-def--ghi'.split(/(\-+)/)
should return ['abc','-','def,'--','ghi']
bu
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64090]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64090 >
rakudo: my Regex $r = /foo/
rakudo de786f: OUTPUT«Type mismatch in assignment [...]
A
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64072]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64072 >
rakudo: module Foo { if 1 { say 42 } }
rakudo de786f: OUTPUT«Null PMC access in
get_pm
# New Ticket Created by Moritz Lenz
# Please include the string: [perl #64100]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64100 >
S12 says:
`'Note that C and C are really role names''
(and I guess that holds true fo
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64080]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64080 >
rakudo: my %p; %p = [%p, 4]; say %p.perl
infinite recursion.
on my box, it eventually
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64078]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64078 >
rakudo: say &foo.arity
rakudo de786f: OUTPUT«Null PMC access in can()current
instr.:
All,
I'm trying to build Rakudo as a prelude to getting started in development. I'm
trying to build under Cygwin on a Vista-64 system. I'm configuring the system
with ./Configure.pl --gen-parrot. Parrot downloads from svn and builds quite
nicely. I run make and it compiles, but doesn't want to
Moritz Lenz (via RT) wrote:
> 09:26 <@moritz_> rakudo: rule w { . }; 'a' ~~ m//; for %($/).kv ->
> $k, $v {say $v.WHAT };
> 09:26 < p6eval> rakudo 4ec17d: OUTPUT«Str»
>
> I think the output should be 'Match', not 'Str'.
not only .kv turn a Match into Str, also .pairs:
09:06 < moritz_> rakudo: c
pugs-comm...@feather.perl6.nl wrote:
> Author: lwall
> Date: 2009-03-19 01:43:53 +0100 (Thu, 19 Mar 2009)
> New Revision: 25902
>
> Modified:
>docs/Perl6/Spec/S05-regex.pod
> Log:
> [S05] define .caps and .chunks methods on match objects
>
>
> Modified: docs/Perl6/Spec/S05-regex.pod
> ==
Author: lwall
Date: 2009-03-23 02:27:32 +0100 (Mon, 23 Mar 2009)
New Revision: 25970
Modified:
docs/Perl6/Spec/S05-regex.pod
Log:
clarifications to .caps and .chunks requested by moritz++
Modified: docs/Perl6/Spec/S05-regex.pod
=
# New Ticket Created by Moritz Lenz
# Please include the string: [perl #64104]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64104 >
Rakudo 8207372ae394ca87667e974a2be2cd547def1f9c
on parrot r37565 (amd64 linux)
grammar
sorry, i corrects a wrong typo.
from >>
"my Type $a" doesn't constraint, while "my $a of Type" does constraint.
to >>
"my Type $a" does constraint, while "my $a of Type" doesn't constraint.
# New Ticket Created by Moritz Lenz
# Please include the string: [perl #64102]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64102 >
>From S12:
There's also a pseudo-functional form:
$x = "Today" but day(Tue
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64048]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64048 >
This issue is slightly complicated, and can probably be summarized
better than I've done
# New Ticket Created by Cory Spencer
# Please include the string: [perl #64108]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64108 >
The following patch adds a Perl 6 version of rand and cis to Any.pm in the
setting.>Fr
# New Ticket Created by Bora
# Please include the string: [perl #64058]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64058 >
1 . Download git from http://github.com/guides/home
2 . Download Strawberry Perl from http:/
Turns out that the loop is actually caused by the +, not the subst,
as I had the same inside an ordinary match. jnthn tells me that the + is
a bit redundant, but it shouldn't cause a loop.
* also succumbs.
signature.asc
Description: This is a digitally signed message part
# New Ticket Created by Moritz Lenz
# Please include the string: [perl #64098]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64098 >
class Object is also {
method f { 'Object' };
}
class Bool is also {
method f {
# New Ticket Created by Cory Spencer
# Please include the string: [perl #64092]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64092 >
The following patch adds Perl 6 versions of the p5chomp and p5chop methods
to Any-str.
Author: lwall
Date: 2009-03-23 01:41:38 +0100 (Mon, 23 Mar 2009)
New Revision: 25969
Modified:
docs/Perl6/Spec/S02-bits.pod
Log:
clarify (we hope) how the top-level lexical, package, and dynamic scopes
interact
Modified: docs/Perl6/Spec/S02-bits.pod
==
On Sat, 21 Mar 2009, Steffen Schwigon wrote:
Hi!
Why not taking a camel with 6 humps?
Just joking, could not resist. :-)
Does that mean that "Alice" should be the standard name in all Perl 6
examples?
:)
-
| Na
Hats off to the designer of the gimel symbol - the associations with
anarchy are probably right for perl6. But to be honest, a letter didnt
quite inspire me. Since, I dont want to criticize without providing
other ideas, here are some thoughts.
Logos can contain meaning. I am not sure whether
2009/3/22 Will Coleda via RT :
> On Thu Jun 05 12:31:31 2008, coke wrote:
>> On Wed Jun 04 13:17:47 2008, bernhard wrote:
>> > On Mo. 09. Jul. 2007, 06:56:53, pcoch wrote:
>> > > In lib/Parrot/Distribution.pm there is the todo item:
>> > >
>> > > # XXX: lex_source_files() collects lisp files as
Author: moritz
Date: 2009-03-22 21:58:27 +0100 (Sun, 22 Mar 2009)
New Revision: 25966
Modified:
docs/Perl6/Spec/S14-roles-and-parametric-types.pod
Log:
[S14] use named arguments to .new() in an example
Modified: docs/Perl6/Spec/S14-roles-and-parametric-types.pod
===
38 matches
Mail list logo