X Tutup
Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 279 Bytes

File metadata and controls

22 lines (16 loc) · 279 Bytes

Inheritance

In order to implement inheritance, it needs to be separated in one folder,

so if you are in src folder,

cd inheritance

then, we need to compile it first since we will be using another class

javac Animal.java Cat.java

then

java Cat
X Tutup