Testing initial repository with basic hello world function November 2, 2020
Run the following to install:
pip install helloworld
To install hellowrold, along with the tools to develop and run tests, run the following in your virtualenv:
$ pip install -e .[dev]
from helloworld import say_hello
# generate "Hello, World!"
say_hello()
# generate "Hello, Everybody!"
say_hello("Everybody")