Compare commits
2 Commits
2ac458dd37
...
af1b20c433
Author | SHA1 | Date | |
---|---|---|---|
af1b20c433 | |||
6c9f45ff19 |
9
index.ts
9
index.ts
@ -1,5 +1,11 @@
|
||||
const PERSON = "youtube";
|
||||
|
||||
function anotherGreeting() {
|
||||
console.log("another greeting!");
|
||||
}
|
||||
|
||||
function init() {
|
||||
console.log("hello youtube!");
|
||||
console.log(`hello ${PERSON}!`);
|
||||
|
||||
console.log("another log!");
|
||||
|
||||
@ -7,3 +13,4 @@ function init() {
|
||||
}
|
||||
|
||||
init();
|
||||
anotherGreeting();
|
||||
|
Reference in New Issue
Block a user