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
The following program returns -8.
-8
HAI 1.2 VISIBLE -010 KTHXBYE
But the following yields the error message test.lol:2: unknown token at: 010.
test.lol:2: unknown token at: 010
HAI 1.2 VISIBLE 010 KTHXBYE
I would have expected octal input to work with neither or both.
The text was updated successfully, but these errors were encountered:
A similar difference between negative and positive is the following. This program returns -0.10.
-0.10
HAI 1.2 VISIBLE -.1 KTHXBYE
But when made positive, you get the error message test.lol:2: unknown token at: .1.
test.lol:2: unknown token at: .1
HAI 1.2 VISIBLE .1 KTHXBYE
Also worth noting is the following, which yields test.lol:2: expected floating point decimal value.
test.lol:2: expected floating point decimal value
HAI 1.2 VISIBLE -. KTHXBYE
Sorry, something went wrong.
No branches or pull requests
The following program returns
-8
.But the following yields the error message
test.lol:2: unknown token at: 010
.I would have expected octal input to work with neither or both.
The text was updated successfully, but these errors were encountered: