diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 08:30:08 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 08:30:08 +0000 |
commit | bb646c37d538025c9c1c41ea28f5fecb79ae0864 (patch) | |
tree | 0148575b9703f3d04c99733712268459e248a7b0 | |
parent | 0f1951f0fcf777e92f27aac6b33e911ffa52b681 (diff) |
Fri, May 3, 2024, 1:30 AM -07:00
-rw-r--r-- | wk6/lect/exit.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/wk6/lect/exit.py b/wk6/lect/exit.py new file mode 100644 index 0000000..3029377 --- /dev/null +++ b/wk6/lect/exit.py @@ -0,0 +1,7 @@ +import sys + +if len(sys.argv) != 2: + print("Missing command-line argument") + sys.exit(1) + +print() |