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
3 Issues:
From command line,
% lua -e 'var=123 loadstring"print(var,...)"(456)'
gives:
123 456
In chrome,
<script src=lua+parser.min.js></script> <script>lua_load('var=123 loadstring"print(var,...)"(456)')();</script> <script>lua_load('var=123 (loadstring"print(var,...)")(456)')();</script> <script>lua_load('var=123 (loadstring"print(var)")(456)')();</script>
Uncaught Error: Parse error on line 1: ...print(var,...)"(456) -----------------------^ Expecting '(', ':', '.', 'STRING', '{', '[', got 'EOF' lua+parser.min.js:127 Uncaught ReferenceError: varargs is not defined undefined lua+parser.min.js:16
The text was updated successfully, but these errors were encountered:
No branches or pull requests
3 Issues:
From command line,
gives:
In chrome,
gives:
The text was updated successfully, but these errors were encountered: