php-src/test.php
2013-11-10 15:49:25 -02:00

9 lines
96 B
PHP

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