common module¶
The common module contains common functions and classes used by the other modules.
hello_world()
¶
Print 'Hello World!' to the console.
This is a simple utility function that outputs a greeting message to standard output.
Source code in geomapforfun/common.py
def hello_world():
"""Print 'Hello World!' to the console.
This is a simple utility function that outputs a greeting message
to standard output.
"""
print("Hello World!")