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,22 +1,22 @@
<?php
# File: HelloWorld.php
#
# Description: This file exemplifies printing 'Hello world!' in PHP.
#
#
# Description: This file exemplifies printing 'Hello, World!' in PHP.
#
# Package: AniNIX/HelloWorld
# Copyright: WTFPL
#
#
# Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
### String to print
$_helloWorld="Hello world!";
$_helloWorld="Hello, World!";
### <summary>
### Prints 'Hello world!'
### Prints 'Hello, World!'
### </summary>
function PrintHelloWorld() {
function PrintHelloWorld() {
global $_helloWorld;
echo $_helloWorld."\n";