1
0
mirror of https://github.com/php/php-src.git synced 2026-03-31 04:32:19 +02:00
Files
archived-php-src/test.php
krakjoe 6203c96061 ...
2013-11-10 21:07:29 +00:00

13 lines
158 B
PHP

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