Skip to content

Instantly share code, notes, and snippets.

@dongweiming
Created April 23, 2018 05:06
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 dongweiming/5222db57bf0d08e222a1c3e8d3419531 to your computer and use it in GitHub Desktop.
Save dongweiming/5222db57bf0d08e222a1c3e8d3419531 to your computer and use it in GitHub Desktop.
import sys
import antigravity
if sys.version_info < (3, 6):
print('Python 3.6+ is the future!')
exit()
def say(name: str) -> None:
print(f'Life is short, you need {name}!')
if __name__ == '__main__':
say('Python')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment