Compare commits
3 Commits
feat/eng-1
...
5ad483620d
Author | SHA1 | Date | |
---|---|---|---|
5ad483620d | |||
af1b20c433 | |||
6c9f45ff19 |
10
index.ts
10
index.ts
@ -1,5 +1,12 @@
|
||||
const PERSON = "youtube";
|
||||
|
||||
function anotherGreeting() {
|
||||
console.log("another greeting!");
|
||||
console.log("yet another greeting!");
|
||||
}
|
||||
|
||||
function init() {
|
||||
console.log("hello youtube!");
|
||||
console.log(`hello ${PERSON}!`);
|
||||
|
||||
console.log("another log!");
|
||||
|
||||
@ -7,3 +14,4 @@ function init() {
|
||||
}
|
||||
|
||||
init();
|
||||
anotherGreeting();
|
||||
|
Reference in New Issue
Block a user