6 lines
55 B
Python
6 lines
55 B
Python
def fn():
|
|
# Error
|
|
exec('x = 2')
|
|
|
|
exec('y = 3')
|
def fn():
|
|
# Error
|
|
exec('x = 2')
|
|
|
|
exec('y = 3')
|