Benchmark module

2012-05-16 Thread Parrot Raiser
Is there a Benchmark module available for Perl 6, or an alternative way of achieving the same information?

RE: Benchmark module

2012-05-16 Thread tadeusz.sosnierz
> Is there a Benchmark module available for Perl 6, or an alternative > way of achieving the same information? > Yes, there is: https://github.com/perlpilot/benchmark/ You can browse available modules at http://modules.perl6.org/

Re: Benchmark module

2012-05-16 Thread Parrot Raiser
On 5/16/12, tadeusz.sosnierz wrote: > Yes, there is: https://github.com/perlpilot/benchmark/ > > You can browse available modules at http://modules.perl6.org/ > Thanks.

Integers and confusion

2012-05-16 Thread Parrot Raiser
While trying to convert some Perl 5 code to 6, I encountered problems which golf down to: Perl 5 code >perl -e 'my $x = int (3 / 2); print $x, "\n";' works >1 First try >./perl6 -e 'my $x = int ( 3 / 2); say $x;;' >===SORRY!=== >Confused

Re: Integers and confusion

2012-05-16 Thread Moritz Lenz
On 05/17/2012 02:13 AM, Parrot Raiser wrote: > While trying to convert some Perl 5 code to 6, I encountered problems > which golf down to: > > Perl 5 code >perl -e 'my $x = int (3 / 2); print $x, "\n";' > works >1 > > First try >./perl6 -e 'my $x = int ( 3 / 2); say $x;;' >