aboutsummaryrefslogtreecommitdiffstats
path: root/day1/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'day1/index.ts')
-rw-r--r--day1/index.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/day1/index.ts b/day1/index.ts
new file mode 100644
index 0000000..638acb9
--- /dev/null
+++ b/day1/index.ts
@@ -0,0 +1,7 @@
+import { ExerciseModuleFunc } from "../types";
+
+const day1: ExerciseModuleFunc = (input: string) => {
+ console.log(input);
+}
+
+export default day1;