Source code for hw
""" example for GitHub Actions with Sphinx """
[docs]def hello_world() -> str:
    """
    do the usual 'hello world'
    :return: Hello World
    :rtype: String
    """
    return "hello world!! :) "
[docs]def greeter_msg(*, greeter: str) -> str:
    """
    Custom greeting
    :param greeter: name of a person who message will be from
    :type greeter: str
    :return: a greeting from the greeter
    :rtype: str
    """
    return f"Hello to you from {greeter}"