Apologies. But you got my point. Actually didn’t think that would work because of the extra ".". Have never tried it before so just assumed :)
-----Original Message----- From: Sanford Whiteman [mailto:[email protected]] Sent: Wednesday, 14 March 2012 5:11 PM To: Steve Onnis Subject: Re: [Moo] Re: toInt() and 96.240,00 € > You wouldn’t be able to do 123.456789.toString() Might want to test these things yourself before saying you wouldn't be able to do them! In fact, 123.456789.toString() parses correctly because order-of-operations turns 123.456789 into a number literal, then runs toString() on it. 123.toString() creates an error; you need to set off (123) in parens. -- S.
