Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Last active February 20, 2019 14:39
Show Gist options
  • Save Ventsislav-Yordanov/aa4fd60e1996ab881a92eef709f1d128 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/aa4fd60e1996ab881a92eef709f1d128 to your computer and use it in GitHub Desktop.
def greeting(name: str) -> str:
return 'Hello ' + name
print(greeting("Ventsi"))
print(greeting(42))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment