Restructuring tests

This commit is contained in:
2023-10-03 12:43:34 -05:00
parent b852e514d0
commit dbc22698e2
19 changed files with 124 additions and 144 deletions

View File

@@ -1,21 +1,21 @@
#!/usr/bin/env python3
# File: HelloWorld.py
#
# Description: This file exemplifies printing 'Hello world!' in python.
#
#
# 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!'
### String to print
_helloWorld='Hello, World!'
### <summary>
### Prints 'Hello world!'
### Prints 'Hello, World!'
### </summary>
def PrintHelloWorld():
def PrintHelloWorld():
print(_helloWorld)
### Main