summaryrefslogtreecommitdiff
path: root/tests/specs/run/patch/add/mod.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/specs/run/patch/add/mod.ts')
-rw-r--r--tests/specs/run/patch/add/mod.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/specs/run/patch/add/mod.ts b/tests/specs/run/patch/add/mod.ts
new file mode 100644
index 000000000..97a779a44
--- /dev/null
+++ b/tests/specs/run/patch/add/mod.ts
@@ -0,0 +1,4 @@
+export function add(a: number, b: number): number {
+ console.log("adding", a, "and", b);
+ return a + b;
+}