feat: adding another user greeting

This commit is contained in:
2025-10-12 20:18:38 +01:00
parent 47bb47ace4
commit fc38677d84

View File

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