summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/hello/hello.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/hello/hello.py b/src/hello/hello.py
index ee18b25..debf6e1 100755
--- a/src/hello/hello.py
+++ b/src/hello/hello.py
@@ -1,3 +1,7 @@
#!env python3
-print('Hello World')
+import sys
+
+who_to_greet = sys.argv[1]
+
+print('Hello', who_to_greet)