GitGud/index.ts

17 lines
240 B
TypeScript

const PERSON = "youtube";
function anotherGreeting() {
console.log("another greeting!");
}
function init() {
console.log("hello youtube!");
console.log("another log!");
console.log("yet another log!");
}
init();
anotherGreeting();