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();