Re: Bug or brain-fade?

2011-05-16 Thread Patrick R. Michaud
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"

Re: Bug or brain-fade?

2011-05-16 Thread Stefan O'Rear
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"

Re: [perl #63408] [PATCH] use PCT::HLLCompiler.addstage()

2011-05-16 Thread Chris
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

Bug or brain-fade?

2011-05-16 Thread Parrot Raiser
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) *