From e4a03d4270e8beef99f7db8c39cc4c82b3d807c1 Mon Sep 17 00:00:00 2001 From: Shubham kakkar Date: Sat, 24 Oct 2020 01:01:25 +0530 Subject: [PATCH] Create helloTypeScript.ts --- helloTypeScript.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 helloTypeScript.ts diff --git a/helloTypeScript.ts b/helloTypeScript.ts new file mode 100644 index 0000000..e427951 --- /dev/null +++ b/helloTypeScript.ts @@ -0,0 +1,5 @@ +function helloTypeScript(name: string): string { + return `Hello TypeScript, ${name} this side.`; +} + +console.log(helloTypeScript('John'));