From 49e93f44f741f6d407a809244cbdf53d0e331bf8 Mon Sep 17 00:00:00 2001 From: Jerome Kelly Date: Sun, 19 Nov 2023 11:19:27 -0500 Subject: [PATCH 1/2] feat: create `Cat` class --- cat.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cat.js diff --git a/cat.js b/cat.js new file mode 100644 index 0000000..7bfb7b6 --- /dev/null +++ b/cat.js @@ -0,0 +1,5 @@ +export class Cat { + makeAsound() { + console.log("wouf wouf"); + } +} From b7015037c527638fe28bc1196de10236aa134785 Mon Sep 17 00:00:00 2001 From: Jerome Kelly Date: Sun, 19 Nov 2023 11:20:49 -0500 Subject: [PATCH 2/2] feat: create `Dog` class --- dog.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 dog.js diff --git a/dog.js b/dog.js new file mode 100644 index 0000000..a6c357e --- /dev/null +++ b/dog.js @@ -0,0 +1,5 @@ +export class Dot { + makeAsound() { + console.log("groin groin"); + } +}