Files
RustPython/extra_tests/snippets/function_nested.py
2020-09-13 06:58:57 +09:00

9 lines
138 B
Python

# Blocked on LOAD_GLOBAL
def sum(x,y):
return x+y
def total(a,b,c,d):
return sum(sum(a,b),sum(c,d))
assert total(1,2,3,4) == 10