1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 04:02:19 +02:00
Files
archived-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();
}
?>