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
In Ace of Coders, this code errors out:
while True: outer() def outer(): enemies = hero.findEnemies()
If I def outer() before the while True:, it works.
def outer()
while True:
Is JS-style hoisting not working? If so, can we make it work, or can we get a better error message?
The text was updated successfully, but these errors were encountered:
Maybe related to differentmatt/filbert#55?
Sorry, something went wrong.
basicer
No branches or pull requests
In Ace of Coders, this code errors out:
If I
def outer()
before thewhile True:
, it works.Is JS-style hoisting not working? If so, can we make it work, or can we get a better error message?
The text was updated successfully, but these errors were encountered: