Skip to content

Instantly share code, notes, and snippets.

@withzombies
Created October 29, 2016 00:12
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 withzombies/bfb6af2b0ddd0b77f9207ad5dcd96194 to your computer and use it in GitHub Desktop.
Save withzombies/bfb6af2b0ddd0b77f9207ad5dcd96194 to your computer and use it in GitHub Desktop.
def returnTypedString():
# type: () -> str
return "lol"
def returnUntypedString():
return "aww"
a = returnTypedString()
b = returnUntypedString()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment