Skip to content

Instantly share code, notes, and snippets.

@hw0k
Created March 26, 2020 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hw0k/8382a49668ab983f390a8562bb33baf7 to your computer and use it in GitHub Desktop.
Save hw0k/8382a49668ab983f390a8562bb33baf7 to your computer and use it in GitHub Desktop.
LID 8
const rec: Shape = new Rectangle(3, 4);
console.log(rec.area); // 12
const sq: Shape = new Square(4);
console.log(sq.area); // 16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment