Skip to content

Instantly share code, notes, and snippets.

@radix
Created January 7, 2015 17:40
Show Gist options
  • Select an option

  • Save radix/50da5f27404c22ee01f6 to your computer and use it in GitHub Desktop.

Select an option

Save radix/50da5f27404c22ee01f6 to your computer and use it in GitHub Desktop.
functions under test
def atom(a):
if a == 0: return -1
else: return a
def composition(a):
return ('composed', atom(a))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment