feat: adding another user greeting

This commit is contained in:
2025-10-12 20:18:38 +01:00
parent 35e30aee7d
commit 2d2a3e382b

View File

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