Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 172 Bytes

File metadata and controls

9 lines (6 loc) · 172 Bytes

Class Extension

Just like interfaces can extend other interfaces, classes can extend other classes.

class BodyOfWater {}

class Ocean extends BodyOfWater {}