php-src/test.php
2013-11-10 15:51:20 -02:00

10 lines
109 B
PHP

<?php
function test() {
echo "Hello World\n";
}
if (!isset($greeting)) {
echo test();
}
return true;
?>