Datasets:

Modalities:
Text
Formats:
text
Size:
< 1K
Libraries:
Datasets
License:
PyRs2 / python /closures.py
khulnasoft's picture
Upload folder using huggingface_hub
998b6cc verified
raw
history blame contribute delete
124 Bytes
def outer_func(x):
def inner_func(y):
return x + y
return inner_func
add_5 = outer_func(5)
print(add_5(10))