9 lines
78 B
Python
9 lines
78 B
Python
|
|
def foo():
|
|
x = 3 + 3
|
|
return x
|
|
|
|
def bar():
|
|
y = 2 + 2
|
|
return y
|