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
Generators can handle this particular example, but it would be nice if we could use this style of programming:
@closures def makeCounter(): x = 0 def foo(): x += 1 return x return foo
which would be transformed into
def makeCounter(): x = [0] def foo(): x[0] += 1 return x[0] return foo
The text was updated successfully, but these errors were encountered:
We would probably need basic static analysis (#44) in order to keep track of scoping and make sure it's the same variable we're assigning too
Sorry, something went wrong.
No branches or pull requests
Generators can handle this particular example, but it would be nice if we could use this style of programming:
which would be transformed into
The text was updated successfully, but these errors were encountered: