1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/tests/testclassfunc
1999-10-08 16:00:10 +00:00

10 lines
77 B
Plaintext

<?
class foo {
function bar() {
print "Hey there!\n";
}
};
foo::bar();