Last active
February 20, 2019 14:39
-
-
Save Ventsislav-Yordanov/aa4fd60e1996ab881a92eef709f1d128 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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