You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env python |
|
|
|
import sys |
|
|
|
def cat(): |
|
print("Meow") |
|
|
|
def main(): |
|
if len(sys.argv) > 1 and sys.argv[1] == "cat": |
|
cat() |
|
else: |
|
print("HELLO WORLD") |
|
|
|
if __name__ == "__main__": |
|
main()
|
|
|