php-src/tests/testclassfunc

10 lines
77 B
Plaintext
Raw Normal View History

1999-04-07 21:05:13 +00:00
<?
class foo {
function bar() {
print "Hey there!\n";
}
};
foo::bar();