Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core: Fix panic on division by integer 0 (#180)
Division by `0isize` now behaves the same as division by `0f64`. Both produce `+inf.0`. ```scheme (= (/ 1 0) (/ 1 0.0)) ; => #true ```
- Loading branch information