On Tue, 03 Nov 2009 17:48:55 +1000, Thomas Bätzler <t.baetz...@bringe.com> wrote:

Dave Tang <d.t...@imb.uq.edu.au> asked:
Just a quick question, how does Perl interpret something like
$array[0.7995038473872]?

Just like $array[ int(0.7995038473872) ], i.e. the floating point number is coerced into an integer value by cutting off the decimal places.

Ah cool. So when using rand in this aspect (i.e. getting random indexes from an array), the int is negligible?

Thanks Thomas!

Cheers,

Dave


HTH,
Thomas


--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to