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();