On Mon, May 16, 2011 at 03:45:08PM -0400, Parrot Raiser wrote:
> The following piece of trivial code, (drastically simplified from an
> example I was trying to convert), produces different results (3rd
> line) under Perl 5 and Perl 6. (Saved as t_f_int2)
>
> print sqrt (1.5 * 1) ;
> print "\n"
On Mon, May 16, 2011 at 03:45:08PM -0400, Parrot Raiser wrote:
> The following piece of trivial code, (drastically simplified from an
> example I was trying to convert), produces different results (3rd
> line) under Perl 5 and Perl 6. (Saved as t_f_int2)
>
> print sqrt (1.5 * 1) ;
> print "\n"
Yes, closeable. Thanks.
Chris
"Tadeusz SoĊnierz via RT" wrote:
On Sun Feb 22 18:53:32 2009, ch...@chrisdolan.net wrote: > This trivial patch
to perl6.pir changes Perl6::Compiler to use its > superclass' addstage()
mutator instead of directly editing the > @stages attribute. This should make
f
The following piece of trivial code, (drastically simplified from an
example I was trying to convert), produces different results (3rd
line) under Perl 5 and Perl 6. (Saved as t_f_int2)
print sqrt (1.5 * 1) ;
print "\n";
print((1 / 2.7) ** 1);
print "\n";
print sqrt (1.5 * 1) *