]> git.netwichtig.de Git - user/henk/code/python/learn_python.git/blob - src/hello/hello.py
change greeting code to be a function
[user/henk/code/python/learn_python.git] / src / hello / hello.py
1 #!env python3
2
3 import sys
4
5 def greet(who_to_greet: str):
6     print('Hello', who_to_greet)
7
8
9 greet(sys.argv[1])