Closed marcomaggi closed 14 years ago
The following forms should return false:
(string->number "1-1") => 1-i (string->number "1.2-3.4") => 1.2-3.4i
but notice that:
(string->number "1/2-3/4") => #f
The problem shows up in source files reading, too, because the code of STRING->NUMBER is used also by the reader.
Should be fixed in the ikarus and devel branches.
The following forms should return false:
but notice that:
The problem shows up in source files reading, too, because the code of STRING->NUMBER is used also by the reader.