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