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
let's say we have the following code:
for x in a ...code... end
This should become the following code in JavaScript
for( x = a.next(); x != EOI; x = a.next()){ ...code... }
Note that the iterable should have a next method and some kind of way to return an EOI (end of iterable) so that writing the javascript is easy.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
let's say we have the following code:
This should become the following code in JavaScript
Note that the iterable should have a next method and some kind of way to return an EOI (end of iterable) so that writing the javascript is easy.
The text was updated successfully, but these errors were encountered: