Skip to content

Instantly share code, notes, and snippets.

@arpitbbhayani
Created February 7, 2020 06:27
Show Gist options
  • Save arpitbbhayani/f15c27c740ff7ed7cdfb906d68ce532e to your computer and use it in GitHub Desktop.
Save arpitbbhayani/f15c27c740ff7ed7cdfb906d68ce532e to your computer and use it in GitHub Desktop.
def area(l, b):
return l * b
>>> namespace = Namespace.get_instance()
>>> func = namespace.register(area)
>>> func(3, 4)
12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment