about summary refs log tree commit diff stats
path: root/ts/bun/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ts/bun/index.ts')
-rw-r--r--ts/bun/index.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/ts/bun/index.ts b/ts/bun/index.ts
new file mode 100644
index 0000000..a453244
--- /dev/null
+++ b/ts/bun/index.ts
@@ -0,0 +1,6 @@
+const a = (b:string):number => {
+    console.log(b);
+    return 123;
+}
+
+console.log(a('Hello World!'));
\ No newline at end of file