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
when I type a variable that is not defined the eval should return nil
nil
Make sure nil values are converted to string before table.concat - in the process/eval.lua
table.concat
The text was updated successfully, but these errors were encountered:
Steps to reproduce
aos> print(nil)
In process/eval.lua make sure to convert any nil values to string, before concat
Sorry, something went wrong.
jfrain99
No branches or pull requests
Problem
when I type a variable that is not defined the eval should return
nil
Solution
Make sure
nil
values are converted to string beforetable.concat
- in the process/eval.luaThe text was updated successfully, but these errors were encountered: