10 lines
123 B
TypeScript
10 lines
123 B
TypeScript
function init() {
|
|
console.log("hello world!");
|
|
|
|
console.log("another log");
|
|
|
|
console.log("yet another log");
|
|
}
|
|
|
|
init();
|