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