Re: r25172 - docs/Perl6/Spec

2009-02-03 Thread Daniel Ruoso
Em Ter, 2009-02-03 às 10:34 +0300, Richard Hainsworth escreveu:
> f) radical suggestion:
> if the syntax '=$filehandle' lazily takes something from the file 
> handle, then
> $filehandle = ;
> should send something to it.

Problem is that this meeses up with assignment, which is an operation in
the container, not on the value, but...

$output <== =$input

works just fine (sending one line of $input to $output), as well as

$input ==> $output

which would connect those filehandles

> We would also have
> $filehandle = map { s/  / %html_entities/ } @lines;
> as a filtering idiom.

Still using feed operators

$output <== map { s/  / %html_entities/ }, @lines;

daniel



perl6 -e 'say "Hello World!"'

2009-02-03 Thread Jeremiah C. Foster

HAI!

I have just built Parrot and perl6 and am just getting started.

Jeremiah


Re: [perl #62974] Signed-zero tests failing on Windows XP

2009-02-03 Thread ajr
>>
> yep, seems like an msvc version thing. iirc there was funny -0
> handling in msvc 7. can the OP attach Parrot::Configure::Generated?
> ~jerry
>

I would, if I could find anything with a name like that, (with or without
.pm suffix). What should the complete path be?



--

Email and shopping with the feelgood factor!
55% of income to good causes. http://www.ippimail.com



[perl #62992] is_deeply fails while .perl shows the same data structure

2009-02-03 Thread via RT
# New Ticket Created by  Gabor Szabo 
# Please include the string:  [perl #62992]
# in the subject line of all future correspondence about this issue. 
# http://rt.perl.org/rt3/Ticket/Display.html?id=62992 >


The attached test script is a simplified version of a test script
that fails. (if I remove the regex and manually add the values then
the test passes).

Gabor


Re: [perl #50402] [BUG] pb compiling a parrot got from svk on a Leopard MacBook

2009-02-03 Thread Stéphane Payrard
I had erased my svk clone. No problem building with a brand new one. Thx.

On Mon, Feb 2, 2009 at 2:54 AM, James Keenan via RT
 wrote:
> Are you still experiencing this problem?
>
> Thank you very much.
> kid51
>



-- 
cognominal stef


[perl #62994] "Make" failure on Windows XP

2009-02-03 Thread via RT
# New Ticket Created by  Alan Rocker 
# Please include the string:  [perl #62994]
# in the subject line of all future correspondence about this issue. 
# http://rt.perl.org/rt3/Ticket/Display.html?id=62994 >


after "svn up" to #362306

src\pmc\parrotlibrary.c
mingw32-make: *** No rule to make target
`include\..\..\src\io\io_private.h', needed by
`src\pmc\parrotinterpreter.o'.  Stop.


--

Email and shopping with the feelgood factor!
55% of income to good causes. http://www.ippimail.com



[perl #63002] Int values cannot be passed as params and then used in ranges in Rakudo

2009-02-03 Thread Carl Mäsak
# New Ticket Created by  "Carl Mäsak" 
# Please include the string:  [perl #63002]
# in the subject line of all future correspondence about this issue. 
# http://rt.perl.org/rt3/Ticket/Display.html?id=63002 >


Parrot r36318 (before the merge that broke Rakudo), and Rakudo 21f374.

$ perl6 -e 'my $a = 5; say $a.PARROT; say $a .. 5'
Int
5
$ perl6 -e 'my $a = 5; sub foo($a) { say $a.PARROT; say $a .. 5 }; foo($a)'
ObjectRef->Int
Undefined value shifted from empty range

$

Note that not only is a warning emitted, but the second 'say' outputs
a blank line.


Re: [perl #62974] Signed-zero tests failing on Windows XP

2009-02-03 Thread James E Keenan

a...@ippimail.com wrote:

yep, seems like an msvc version thing. iirc there was funny -0
handling in msvc 7. can the OP attach Parrot::Configure::Generated?
~jerry



I would, if I could find anything with a name like that, (with or without
.pm suffix). What should the complete path be?




lib/Parrot/Config/Generated.pm ... which is exists after Configure.pl 
creates it.