diff --git a/hello_world.py b/hello_world.py new file mode 100644 index 0000000000000000000000000000000000000000..d72379efd563a219c8b306114b18263d1dc2fd60 --- /dev/null +++ b/hello_world.py @@ -0,0 +1,13 @@ +#!/bin/env python3 + +import click + + +@click.command() +@click.argument('name', nargs=1) +def hello(name): + print("Hello {name}".format(name=name)) + + +if __name__ == '__main__': + hello()