Skip to content

Instantly share code, notes, and snippets.

@wiccy46
Created April 17, 2020 20:41
Show Gist options
  • Save wiccy46/cb0fde8af2b8996823671a4caca6a73a to your computer and use it in GitHub Desktop.
Save wiccy46/cb0fde8af2b8996823671a4caca6a73a to your computer and use it in GitHub Desktop.
[chainadd] Chain add function #python #math
class CustomInt(int):
def __call__(self, v):
return CustomInt(self + v)
def add(v):
return CustomInt(v)
# add(3)(4)(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment