Skip to content
New issue

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

Fix indexing #79

Closed
RaphaelPour opened this issue Feb 10, 2022 · 2 comments · Fixed by #80
Closed

Fix indexing #79

RaphaelPour opened this issue Feb 10, 2022 · 2 comments · Fixed by #80
Labels
enhancement New feature or request

Comments

@RaphaelPour
Copy link
Collaborator

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
@Flipez
Copy link
Owner

Flipez commented Feb 26, 2022

I think @MarkusFreitag fixed this with #80 ?

@Flipez
Copy link
Owner

Flipez commented Feb 26, 2022

Fixed in #80

@Flipez Flipez closed this as completed Feb 26, 2022
@Flipez Flipez added the enhancement New feature or request label Feb 26, 2022
@Flipez Flipez linked a pull request Feb 26, 2022 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants