Untitled

Run Settings
LanguagePython
Language Version
Run Command
def a(): global x x = 1 y = 1 print(x, y) a() x += 1 print(x) a()
def a(y): global x x = 1 y = 1 print(x, y) a(1) x += 1 print(x) a(2)
def a(y): global x x = 1 y += 1 print(x) def b() def c(): a(1) c() b()
Editor Settings
Theme
Key bindings
Full width
Lines