Functions:
*
Basic Function Usage
A basic function is defined and executed like this:
function hello($name)
{
print "Hello $name";
}
hello("Alice");