Source code for helloWorld

"""This is a very simple helloWorld python script"""
[docs]def helloWorld( msg ): """ This is a simple function that prints a message Parameters: msg (str): The string to print """ print( msg )
helloWorld( 'Hello World' )