// Show just the module information.
// phpinfo(8) yields identical results.

phpinfo(INFO_MODULES);

//must be repeated for multiply line..

/* and are used to delineate a comment block */
/* used once at the beginning 
used once at the end*/
// variables
use absolom\my_stuff\Database;
use absolom\my_stuff\Foo;
$foo = new Database();
$fooF = new Foo();
$foo->doAwesomeThings();
$fooF->doAwesomeThings();
//$obj = new absolom\my_stuff\Foo();
//$objDb = new absolom\my_stuff\Database();
//echo $obj->doAwesomeThings();
//echo $objDb->doAwesomeThings();
$a = 1;
++$a;
$a *= $a;
echo $a-- . '<br>';
echo 'Welcome to Zend Certication pactice' . '<br>';
$m = 4 % 3;
echo $m . '<br>';
$age = 21;
// Control structures
/* if ( $age < 18) {