xxxxxxxxxx
# from "NeuralNine" video "Professional CLI Applications with Click"
# https://www.youtube.com/watch?v=vm9tOamPkeQ
import click
@click.command()
@click.option("--name", prompt="Enter your name: ", help="The name of the user")
def hello(name):
click.echo(f"Hello {name}!")
hello()