feat: adding another user greeting

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

View File

@ -1,3 +1,9 @@
function anotherGreeting() {
console.log("another greeting!");
console.log("yet another greeting!");
console.log("yet yet another greeting!");
}
function init() {
console.log("hello youtube!");
@ -7,3 +13,4 @@ function init() {
}
init();
anotherGreeting();