mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
14 lines
144 B
Python
14 lines
144 B
Python
|
|
|
|
def test1():
|
|
return "test1"
|
|
|
|
def test():
|
|
return test1
|
|
|
|
l = [test1]
|
|
|
|
assert l[0]() == "test1"
|
|
assert test()() == "test1"
|
|
print("PASS")
|