lissarchive-website/listings/hello.py

12 lines
161 B
Python
Raw Normal View History

2017-05-02 02:54:12 +00:00
#!/usr/bin/python
import sys
def hello(name='world'):
greeting = "hello " + name
print(greeting)
if __name__ == "__main__":
hello(*sys.argv[1:])