HelloWorld/HelloWorld.py

24 lines
446 B
Python
Raw Normal View History

2019-04-15 15:58:35 -05:00
#!/usr/bin/env python3
2018-11-05 15:35:32 -06:00
# File: HelloWorld.py
2018-11-05 15:35:32 -06:00
#
# Description: This file exemplifies printing 'Hello world!' in python.
2018-11-05 15:35:32 -06:00
#
# Package: AniNIX::Foundation/HelloWorld
# Copyright: WTFPL
#
# Author: DarkFeather <darkfeather@aninix.net>
2019-04-15 15:58:35 -05:00
### String to print
_helloWorld='Hello world!'
2018-11-05 15:35:32 -06:00
### <summary>
### Prints 'Hello world!'
### </summary>
2019-04-15 15:58:35 -05:00
def PrintHelloWorld():
print(_helloWorld)
2018-11-05 15:35:32 -06:00
2019-04-15 15:58:35 -05:00
### Main
if __name__ == '__main__':
PrintHelloWorld()