summaryrefslogtreecommitdiff
path: root/src/hello/hello.py
blob: d56b4ae500724c5c1986a11a3e9f8f9dcc34a6a9 (plain)
1
2
3
4
5
6
7
8
9
#!env python3

import sys

def greet(who_to_greet: str):
    print('Hello', who_to_greet)


greet(sys.argv[1])