aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/samplesite/listings/hello.py
blob: 885acdee977e777f78884aed21acf80f0908cf9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python

import sys


def hello(name='world'):
    greeting = "hello " + name
    print(greeting)

if __name__ == "__main__":
    hello(*sys.argv[1:])