[ create a new paste ] login | about

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

PHP, pasted on Jun 13:
1
2
3
4
5
6
7
8
9
10
11
12
<?php
class A{
public function __construct(){
echo 'Hello world';
}
}

class B extends A {
public function __construct(){}
}

$c=new A();


Output:
1
Hello world


Create a new paste based on this one


Comments: