From: Leon N M. <leo...@gm...> - 2010-09-30 13:46:06
|
When you get it working, you'll find a bug -- 77854 is too large for a regular integer, so you'll get a wacky answer: > bl parse 7.77854e-12 >float . fs. -1 7.1231751E-12 ok Take off a digit, and things get better: > bl parse 7.7785e-12 >float . fs. -1 7.7784925E-12 ok I'm working on a rewrite with double length integers to fix this (and other problems). -Leon >Thursday 30 September 2010 >From: "pito" <pi...@vo...> >Subject: Re: [Amforth-devel] >FLOAT > Michael, thanks for the patch I will try! > > Unfortunately I have >float there, I did upload it several times, > but it seems this come with amf4.2. I'll try 4.0..Pito > > > --------------------------------------------------------------------------- > --- Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > Amforth-devel mailing list > Amf...@li... > https://lists.sourceforge.net/lists/listinfo/amforth-devel |