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