wolfgangj / bone-lisp

The Bone Lisp programming language
Other
321 stars 21 forks source link

fix integer arithmetic (+,-,*,/) for more than 2 arguments #11

Closed dubek closed 8 years ago

dubek commented 8 years ago

Operations on values larger than 2^31 failed because intermediate results were stored in an int variable instead of a int64_t variable.

wolfgangj commented 8 years ago

Thanks.