From 6c9f45ff19dd7fee34805e46ab87fce58f8f6fca 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 c60ac07..2453baf 100644 --- a/index.ts +++ b/index.ts @@ -1,3 +1,7 @@ +function anotherGreeting() { + console.log("another greeting!"); +} + function init() { console.log("hello youtube!"); @@ -7,3 +11,4 @@ function init() { } init(); +anotherGreeting();