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