|
package Practice.School;
|
|
|
|
public class Chile extends Parent {
|
|
|
|
public Chile(){
|
|
int age = super.getAge();
|
|
}
|
|
public void print(){
|
|
System.out.println("Hello child");
|
|
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
Chile chile = new Chile();
|
|
System.out.println(chile.getAge());
|
|
|
|
}
|
|
}
|
|
|