Guest User

Untitled

a guest
May 26th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. #!/usr/bin/env python
  2.  
  3. import fire
  4.  
  5. def add(x, y):
  6. return x + y
  7.  
  8. if __name__ == "__main__":
  9. fire.Fire(add)
Add Comment
Please, Sign In to add comment