diff --git a/index.ts b/index.ts index dc0588b..f9455a3 100644 --- a/index.ts +++ b/index.ts @@ -1,5 +1,9 @@ const PERSON = "youtube"; +function anotherGreeting() { + console.log("another greeting!"); +} + function init() { console.log(`hello ${PERSON}!`); @@ -9,3 +13,4 @@ function init() { } init(); +anotherGreeting();