2019-04-15 15:58:35 -05:00
|
|
|
#!/usr/bin/env python3
|
2018-11-05 15:35:32 -06:00
|
|
|
|
2019-04-15 16:21:46 -05:00
|
|
|
# File: HelloWorld.py
|
2018-11-05 15:35:32 -06:00
|
|
|
#
|
2019-04-15 16:21:46 -05:00
|
|
|
# Description: This file exemplifies printing 'Hello world!' in python.
|
2018-11-05 15:35:32 -06:00
|
|
|
#
|
2021-12-01 13:12:27 -06:00
|
|
|
# Package: AniNIX/HelloWorld
|
2018-11-05 15:35:32 -06:00
|
|
|
# Copyright: WTFPL
|
|
|
|
#
|
2021-12-01 13:12:27 -06:00
|
|
|
# Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
|
2018-11-05 15:35:32 -06:00
|
|
|
|
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()
|