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
Indexing with hashes and arrays are not working:
🚀 > h = {} => {} 🚀 > h["a"] = 1 🔥 Great, you broke it! parser errors: 0:10: expected assign token to be IDENT, got [ instead 🚀 > a = [] => [] 🚀 > a.yoink(0) => null 🚀 > a[0] = 1 🔥 Great, you broke it! parser errors: 0:6: expected assign token to be IDENT, got [ instead
The text was updated successfully, but these errors were encountered:
I think @MarkusFreitag fixed this with #80 ?
Sorry, something went wrong.
Fixed in #80
Successfully merging a pull request may close this issue.
Indexing with hashes and arrays are not working:
The text was updated successfully, but these errors were encountered: