mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
15 lines
157 B
Python
15 lines
157 B
Python
#!/usr/bin/python
|
|
|
|
def topLevel():
|
|
foo = 3
|
|
|
|
def bar():
|
|
nonlocal foo
|
|
print(foo)
|
|
foo = 4
|
|
|
|
bar()
|
|
print(foo)
|
|
|
|
topLevel()
|