diff --git a/index.ts b/index.ts index 4890139..797825d 100644 --- a/index.ts +++ b/index.ts @@ -1,5 +1,18 @@ -console.log("hello youtube!"); +const PERSON = "youtube"; -console.log("another log"); +function anotherGreeting() { + console.log("another greeting!"); + console.log("yet another greeting!"); + console.log("yet yet another greeting!"); +} -console.log("yet another log"); +function init() { + console.log(`hello ${PERSON}!`); + + console.log("another log!"); + + console.log("yet another log!"); +} + +init(); +anotherGreeting();