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
The input field for global variables is not working. Pease fix it.
The text was updated successfully, but these errors were encountered:
Can you give some example?
Sorry, something went wrong.
The input fields are not responding.
I've got the same issue when I set a global variable and increment it. Please fix it,
Example: global variables:
nums = [1 ,2] i = 0
def fn(): if i >= len(nums): return i += 1 fn() fn() i -= 1
For solving the problem I use arrays for example
global variables:
nums = [1 ,2] count = []
def fn(n): if len(count) >= len(nums): return count.append(None) fn(n) fn(n) count.pop()
No branches or pull requests
The input field for global variables is not working. Pease fix it.
The text was updated successfully, but these errors were encountered: