main

#!/usr/bin/env python3
"""
Module Docstring
"""
__author__ = "First Last"
__version__ = "0.1.0"
__license__ = "MIT"

def main():
    """ Main entry point of the app """
    print("hello world")

if __name__ == "__main__":
    """ This is executed when run from the command line """
    main()
Last modified June 20, 2024: adding worksho as seperate menu (c6e465a)