From 35e30aee7d8849a40acac2a2a711b5d777212d14 Mon Sep 17 00:00:00 2001 From: John Costa Date: Sun, 12 Oct 2025 20:02:28 +0100 Subject: [PATCH] chore: reorganizing initialization and exclamation --- index.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/index.ts b/index.ts index 4890139..c60ac07 100644 --- a/index.ts +++ b/index.ts @@ -1,5 +1,9 @@ -console.log("hello youtube!"); +function init() { + console.log("hello youtube!"); -console.log("another log"); + console.log("another log!"); -console.log("yet another log"); + console.log("yet another log!"); +} + +init();