Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update guidance around division by zero #1153

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion note/answers/chapter07_evaluating.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
3. It returns Infinity, -Infinity, or NaN based on sign of the dividend. Given
that Lox is a high level scripting language, I think it would be better to
raise a runtime error to let the user know something got weird. That's what
Python and Ruby do.
Python does.

On the other hand, given that Lox gives the user no way to catch and
handle runtime errors, not throwing one might be more flexible.