1 Commits

Author SHA1 Message Date
00a5d2454b chore: reorganizing initialization and exclamation 2025-10-12 20:09:42 +01:00

View File

@ -1,13 +1,5 @@
const PERSON = "youtube";
function anotherGreeting() {
console.log("another greeting!");
console.log("yet another greeting!");
console.log("yet yet another greeting!");
}
function init() {
console.log(`hello ${PERSON}!`);
console.log("hello world!");
console.log("another log!");
@ -15,4 +7,3 @@ function init() {
}
init();
anotherGreeting();