12 lines
156 B
TypeScript
12 lines
156 B
TypeScript
const PERSON = "youtube";
|
|
|
|
function init() {
|
|
console.log(`hello ${PERSON}!`);
|
|
|
|
console.log("another log!");
|
|
|
|
console.log("yet another log!");
|
|
}
|
|
|
|
init();
|