Skip to content

Instantly share code, notes, and snippets.

@mlsteele
Created June 26, 2013 01:49
Show Gist options
  • Save mlsteele/5864141 to your computer and use it in GitHub Desktop.
Save mlsteele/5864141 to your computer and use it in GitHub Desktop.
def f(x, y, z):
print x + y
print z
def f(int x, int y, string z):
print x + y
print z
@typearg('x', 'int')
@typearg('y', 'int')
@typearg('z', 'string')
def f(x, y, z):
print x + y
print z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment