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