[ create a new paste ] login | about

Link: http://codepad.org/h2TMPYUV    [ raw code | output | fork ]

PHP, pasted on Nov 22:
1
2
3
4
5
6
7
8
9
10
11
12
<?php 

class Foo {
    function __construct(){ 
        echo 'hi!';
    }
    static function bar(){
        return 'there';
    }
}

echo Foo::bar();


Output:
1
there


Create a new paste based on this one


Comments: