From a96705ea0e12b505e1e8493dc6ca31e503989819 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 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/index.ts b/index.ts index c60ac07..7cbd4e9 100644 --- a/index.ts +++ b/index.ts @@ -1,3 +1,9 @@ +function anotherGreeting() { + console.log("another greeting!"); + console.log("yet another greeting!"); + console.log("yet yet another greeting!"); +} + function init() { console.log("hello youtube!"); @@ -7,3 +13,4 @@ function init() { } init(); +anotherGreeting();