#!/usr/bin/env python3 # File: HelloWorld.py # # Description: This file exemplifies printing 'Hello, World!' in python. # # Package: AniNIX/HelloWorld # Copyright: WTFPL # # Author: DarkFeather ### String to print _helloWorld='Hello, World!' ### ### Prints 'Hello, World!' ### def PrintHelloWorld(): print(_helloWorld) ### Main if __name__ == '__main__': PrintHelloWorld()