ashinn / chibi-scheme

Official chibi-scheme repository
Other
1.22k stars 141 forks source link

Fix bug: sexp_read_number can't parse a/b@c-style number correctly. #898

Closed nkoguro closed 1 year ago

nkoguro commented 1 year ago

The current logic can't parse a/b@c-style number correctly.

For example,

% chibi-scheme
> 1@2
-0.4161468365471424+0.9092974268256817i
> 1/1@2
0.4161468365471425-0.9092974268256816i
> 1@4
-0.6536436208636119-0.7568024953079282i
> 1/1@4
zsh: segmentation fault  chibi-scheme
ashinn commented 1 year ago

Thanks!