$ fltexpr -p inf
inf
$ fltexpr -p 10**10000
inf
$ fltexpr -p 1e10000
bash: fltexpr: 1e10000: number out of range (error token is "1e10000")

can you just ignore erange?  strtod returns an infinity in that case

in other interpreted languages, 1e10000 is:
- inf in ksh93 and lua
- 'inf' in perl
- INF in php
- Infinity in js
- math.inf in python
- Float::INFINITY in ruby

Reply via email to