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

Merge branch 'dbeniamine-master-patch-56574' into 'master'

Add a hello world

See merge request sage/python-env.-with-conda-and-win10!1
parents 8c34dd77 f0f2fb5c
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