24 lines
446 B
Python
Executable File
24 lines
446 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# File: HelloWorld.py
|
|
#
|
|
# Description: This file exemplifies printing 'Hello world!' in python.
|
|
#
|
|
# Package: AniNIX/HelloWorld
|
|
# Copyright: WTFPL
|
|
#
|
|
# Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
|
|
|
|
### String to print
|
|
_helloWorld='Hello world!'
|
|
|
|
### <summary>
|
|
### Prints 'Hello world!'
|
|
### </summary>
|
|
def PrintHelloWorld():
|
|
print(_helloWorld)
|
|
|
|
### Main
|
|
if __name__ == '__main__':
|
|
PrintHelloWorld()
|