A new Riff-radio.org site with a static approach.

hello.py 162B

12345678910111213
  1. #!/usr/bin/python
  2. import sys
  3. def hello(name='world'):
  4. greeting = "hello " + name
  5. print(greeting)
  6. if __name__ == "__main__":
  7. hello(*sys.argv[1:])