17 lines
295 B
TypeScript
17 lines
295 B
TypeScript
function anotherGreeting() {
|
|
console.log("another greeting!");
|
|
console.log("yet another greeting!");
|
|
console.log("yet yet another greeting!");
|
|
}
|
|
|
|
function init() {
|
|
console.log("hello youtube!");
|
|
|
|
console.log("another log!");
|
|
|
|
console.log("yet another log!");
|
|
}
|
|
|
|
init();
|
|
anotherGreeting();
|