php-src/tests/testclassfunc
1999-07-08 21:42:29 +00:00

11 lines
78 B
Plaintext

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