[ create a new paste ] login | about

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

PHP, pasted on Mar 25:
1
2
3
4
5
6
7
8
9
10
11
12
<?php
class X {
    public function blah() {
        echo "Yeah!\n";
    }
}

$x = new X();
$x->blah();
$x->Blah();
$x->BlAh();
?>


Output:
1
2
3
Yeah!
Yeah!
Yeah!


Create a new paste based on this one


Comments: