Created
January 7, 2015 17:40
-
-
Save radix/50da5f27404c22ee01f6 to your computer and use it in GitHub Desktop.
functions under test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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