From fc38677d847bc205598699dbda8b78cd7a3b44ea Mon Sep 17 00:00:00 2001 From: John Costa Date: Sun, 12 Oct 2025 20:18:38 +0100 Subject: [PATCH] feat: adding another user greeting --- index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.ts b/index.ts index dc0588b..f9455a3 100644 --- a/index.ts +++ b/index.ts @@ -1,5 +1,9 @@ const PERSON = "youtube"; +function anotherGreeting() { + console.log("another greeting!"); +} + function init() { console.log(`hello ${PERSON}!`); @@ -9,3 +13,4 @@ function init() { } init(); +anotherGreeting();