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