You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The interpreter thinks -1 is a number itself, and does num num rather than num - num:
⧐ 1 10
10
This last behavior is, in itself, problematic. I guess an easy fix is to see whether there's an operator between two numbers -- if not, raise an error. But if the second number "kind of has an operator" (-), we could simply subtract...