Skip to content
Snippets Groups Projects
Commit f0f2fb5c authored by David Beniamine's avatar David Beniamine
Browse files

Add a hello world

parent 8c34dd77
No related branches found
No related tags found
1 merge request!1Add a hello world
#!/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()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment