Tagged Questions

1
vote
2answers
166 views

Why do my Perl bigints have a decimal place?

If I do use a big integer in substr: use BigInt; $acct_hash = substr(('99999999999912345' + $data[1]),0,15); why is the result still 9.9999999999912? I was expecting 999999999999912. Is there …