Re: Size of number in scalar

2003-01-23 Thread Rob Dixon
Christopher D . Lewis wrote: > Someone posted a question as to the size of number which a scalar > would tolerate. When I wanted to know what size boundaries I faced in > certain variable types in C, I wrote a little program that added 1 to > a variable until n+1 was less than n, at which point I

RE: Size of number in scalar

2003-01-22 Thread Russ Foster
PM To: Christopher D. Lewis Cc: [EMAIL PROTECTED] Subject: Re: Size of number in scalar You'll be waiting a long time. Perl quickly moves into scientific notation and can handle arbitrarily large values. I wrote a similar program a while back and got bored with it when the count hit

Re: Size of number in scalar

2003-01-22 Thread david
Ben Siders wrote: > You'll be waiting a long time. Perl quickly moves into scientific > notation and can handle arbitrarily large values. I wrote a similar > program a while back and got bored with it when the count hit about > 10^17. :) if you don't want to wait but still want to try to push P

RE: Size of number in scalar

2003-01-22 Thread Westgate, Jared
Chris Said: > Someone posted a question as to the size of number which a > scalar would > tolerate. I guess I missed this thread, so I hope I'm not repeating information. :) > Perl seems to > tolerate quite a bit of this, as the app has been churning away, > printing every so many number ju

Re: Size of number in scalar

2003-01-22 Thread Ben Siders
You'll be waiting a long time. Perl quickly moves into scientific notation and can handle arbitrarily large values. I wrote a similar program a while back and got bored with it when the count hit about 10^17. :) Christopher D. Lewis wrote: Someone posted a question as to the size of number w