aboutsummaryrefslogtreecommitdiffstats
path: root/day1/index.ts
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2020-12-01 13:16:50 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2020-12-01 13:16:50 +0200
commit3328eb99625e7df28202e57cd8c159f8b7708ac5 (patch)
tree200b31e5a68454183e45e1316af408f7f4dfcdc0 /day1/index.ts
parent6064019df1049c929fae3daa1325ef9c8817d38c (diff)
Initial setup with TS
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;