-
Notifications
You must be signed in to change notification settings - Fork 6
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
Decimals aren't supported #44
Comments
Maxima only accepts decimal points We should therefore only allow for decimal points |
Should we allow writing numbers with a leading decimal point? |
I decided not to allow for numbers with a leading decimal point. Although, this is a quick fix if we change our mind later. |
For future notice, it is mainly sets and lists that are difficult to interpret when allowing decimal commas |
Decimals aren't supported.
Both decimal point
.
and comma,
should be supported.This means that they needs to be defined as accepted tokens, see tokens.js. Further, they need to be parsed as being a part of a number. This should most likely be implemented in the
parseNumber
function in the parser.js file.The text was updated successfully, but these errors were encountered: