We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
CL-USER> (type-of 1.2) FLOAT CL-USER> (type-of 1.2e10) INTEGER CL-USER> (type-of 1.2d10) INTEGER
The text was updated successfully, but these errors were encountered:
integerp and floatp are also wrong:
integerp
floatp
CL-USER> (integerp 1.2e1) T CL-USER> (floatp 1.2e1) NIL
Sorry, something went wrong.
Yes, this is a known limitation because in Javascript all numbers are floats.
Or they used to be, now support for bignums is common and it would be great to play again with them in JSCL.
No branches or pull requests
The text was updated successfully, but these errors were encountered: