mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
14 lines
116 B
Python
14 lines
116 B
Python
|
|
|
|
def foo(x):
|
|
def bar(z):
|
|
return z + x
|
|
return bar
|
|
|
|
f = foo(9)
|
|
g = foo(10)
|
|
|
|
print(f(2))
|
|
print(g(2))
|
|
|