Skip to content

Instantly share code, notes, and snippets.

@sguzman
Last active June 30, 2020 00:55
Show Gist options
  • Save sguzman/ff54999e2cec7258602ffa454e6ca914 to your computer and use it in GitHub Desktop.
Save sguzman/ff54999e2cec7258602ffa454e6ca914 to your computer and use it in GitHub Desktop.
An example of tacit programming in python. Pretty
def compose(*fns):
return functools.partial(functools.reduce, lambda v, fn: fn(v), fns)
example = compose(baz, bar, foo)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment