From fd355879b88698f26f18190c21be4183e59c0f2b Mon Sep 17 00:00:00 2001 From: "exercism-solutions-syncer[bot]" <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 14:55:40 +0000 Subject: [PATCH] [Sync Iteration] typescript/hello-world/1 --- solutions/typescript/hello-world/1/hello-world.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 solutions/typescript/hello-world/1/hello-world.ts diff --git a/solutions/typescript/hello-world/1/hello-world.ts b/solutions/typescript/hello-world/1/hello-world.ts new file mode 100644 index 0000000..c6c845b --- /dev/null +++ b/solutions/typescript/hello-world/1/hello-world.ts @@ -0,0 +1,3 @@ +export function hello(): string { + return 'Hello, World!' +}