19 lines
324 B
TypeScript
19 lines
324 B
TypeScript
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("another log!");
|
|
|
|
console.log("yet another log!");
|
|
}
|
|
|
|
init();
|
|
anotherGreeting();
|