Skip to content

Instantly share code, notes, and snippets.

@tuxmartin
Created January 10, 2017 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuxmartin/17f768861770c17870f27fbe8ebe782c to your computer and use it in GitHub Desktop.
Save tuxmartin/17f768861770c17870f27fbe8ebe782c to your computer and use it in GitHub Desktop.
def wtf(a, b):
plus = a + b
minus = a - b
return plus, minus
x, y = wtf(10, 5)
print x
print y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment