Compare commits
4 Commits
2a343031f5
...
main
Author | SHA1 | Date | |
---|---|---|---|
c50390db00 | |||
a96705ea0e | |||
35e30aee7d | |||
0058fdec70 |
19
index.ts
19
index.ts
@ -1,5 +1,18 @@
|
|||||||
console.log("hello world!");
|
const PERSON = "youtube";
|
||||||
|
|
||||||
console.log("another log");
|
function anotherGreeting() {
|
||||||
|
console.log("another greeting!");
|
||||||
|
console.log("yet another greeting!");
|
||||||
|
console.log("yet yet another greeting!");
|
||||||
|
}
|
||||||
|
|
||||||
console.log("yet another log");
|
function init() {
|
||||||
|
console.log(`hello ${PERSON}!`);
|
||||||
|
|
||||||
|
console.log("another log!");
|
||||||
|
|
||||||
|
console.log("yet another log!");
|
||||||
|
}
|
||||||
|
|
||||||
|
init();
|
||||||
|
anotherGreeting();
|
||||||
|
Reference in New Issue
Block a user