-
Notifications
You must be signed in to change notification settings - Fork 64
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
should permit iterating a List without declaring a binding #566
Comments
Why not a loop from 0 to list.length? |
It's not as direct. |
I also prefer a loop from 0 to the length of the list, and so am not going to implement this. |
We talked about this in editor call and are going to explore using |
I get this error when using the suggested form:
|
I want to be able to iterate a List using the
For each element _e_ of _list_, do
notation without having to declare an unused binding (essentially, repeat this a number of times equal to the number of elements in the list). I would write this asFor each element of _list_, do
, but ecmarkup currently thinks that declares_list_
instead of referencing it.The text was updated successfully, but these errors were encountered: