Adding hooks directory; comment cleanup for professionalism

This commit is contained in:
DarkFeather
2019-04-15 16:21:46 -05:00
parent 151648f44f
commit af99e73ac7
7 changed files with 13 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
<?php
# File: helloworld.php
# File: HelloWorld.php
#
# Description: This file exemplifies printing 'Hello world!' in PHP.
#
@@ -11,14 +11,14 @@
### String to print
$helloWorld="Hello world!";
$_helloWorld="Hello world!";
### <summary>
### Prints 'Hello world!'
### </summary>
function PrintHelloWorld() {
global $helloWorld;
echo $helloWorld."\n";
global $_helloWorld;
echo $_helloWorld."\n";
}