From b7293e8c02744b56fe3102b7197dbb064c8859e3 Mon Sep 17 00:00:00 2001 From: Exercism's Solution Syncer Bot <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Tue, 5 Aug 2025 18:44:36 +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!' +}