diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 08:27:55 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 08:27:55 +0000 |
commit | 0f1951f0fcf777e92f27aac6b33e911ffa52b681 (patch) | |
tree | badae75092580b827639be2a168fcecc869adb4a /wk6/lect/greet.py | |
parent | e3f305423ecac8b2cd177ffbf49b59f4b264bea1 (diff) |
Fri, May 3, 2024, 1:27 AM -07:00
Diffstat (limited to 'wk6/lect/greet.py')
-rw-r--r-- | wk6/lect/greet.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/wk6/lect/greet.py b/wk6/lect/greet.py new file mode 100644 index 0000000..05136da --- /dev/null +++ b/wk6/lect/greet.py @@ -0,0 +1,6 @@ +from sys import argv + +if len(argv) == 2: + print("hello,", argv[1]) +else: + print("hello, world") |