Adds gitignore, tsconfig, basic scripts and a ts hello world
This commit is contained in:
5
src/index.js
Normal file
5
src/index.js
Normal file
@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
const helloFn = (name) => {
|
||||
return `Hola ${name}`;
|
||||
};
|
||||
console.log(helloFn("Mundo"));
|
Reference in New Issue
Block a user