From 00a5d2454bface8370806439d73cd46df04fa8bb 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 aba1329..bb3660a 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();