Working state
This commit is contained in:
23
HelloWorld.py
Executable file
23
HelloWorld.py
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
# File: helloworld.bash
|
||||
#
|
||||
# Description: This file exemplifies printing 'Hello world!' in bash.
|
||||
#
|
||||
# Package: AniNIX::Foundation/HelloWorld
|
||||
# Copyright: WTFPL
|
||||
#
|
||||
# Author: DarkFeather <darkfeather@aninix.net>
|
||||
|
||||
### String to print
|
||||
_helloWorld='Hello world!'
|
||||
|
||||
### <summary>
|
||||
### Prints 'Hello world!'
|
||||
### </summary>
|
||||
def PrintHelloWorld():
|
||||
print(_helloWorld)
|
||||
|
||||
### Main
|
||||
if __name__ == '__main__':
|
||||
PrintHelloWorld()
|
||||
Reference in New Issue
Block a user