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!' +}