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
This is maybe more of an "fyi" than an issue, but here's two parser bugs I found recently:
if (false)?1 --hi
this causes issues on the next line: https://www.lexaloffle.com/bbs/?tid=142148
This mostly doesn't matter for shrinko8 since trailing spaces and comments are removed (under most use cases)
if (1)<2 print"a"
this works -- surprising! https://www.lexaloffle.com/bbs/?tid=142179
This doesn't work in shrinko8 but it's not a big issue, I'll just change my source code. (and hopefully pico8 will make this a syntax error)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is maybe more of an "fyi" than an issue, but here's two parser bugs I found recently:
if (false)?1 --hi
this causes issues on the next line: https://www.lexaloffle.com/bbs/?tid=142148
This mostly doesn't matter for shrinko8 since trailing spaces and comments are removed (under most use cases)
if (1)<2 print"a"
this works -- surprising! https://www.lexaloffle.com/bbs/?tid=142179
This doesn't work in shrinko8 but it's not a big issue, I'll just change my source code. (and hopefully pico8 will make this a syntax error)
The text was updated successfully, but these errors were encountered: