aboutsummaryrefslogtreecommitdiff
path: root/samples/either.js
diff options
context:
space:
mode:
authorMarvin Borner2024-11-27 02:12:12 +0100
committerMarvin Borner2024-11-27 02:27:48 +0100
commit6da602b0a29afcd2aa15725547375a80e30b3983 (patch)
treebb268dc7935696c2687c4ec151c2e0108536fa6f /samples/either.js
initial commit
Diffstat (limited to 'samples/either.js')
-rw-r--r--samples/either.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/samples/either.js b/samples/either.js
new file mode 100644
index 0000000..e9ad679
--- /dev/null
+++ b/samples/either.js
@@ -0,0 +1,19 @@
+import * as either from "../src/either.js"
+import * as fs from "fs"
+
+function divide(a, b) {
+ if (b === 0)
+ return either.Left("Error: Division by zero!")
+ return either.Right(a / b)
+}
+
+// try piping 42 or 0 into stdin
+const input = +fs.readFileSync(0, "utf-8");
+const result = either.DO(function* () {
+ const a = yield divide(42, input)
+ const b = yield divide(42, a)
+ const c = yield divide(b, a)
+ return c
+})
+
+console.log(either.show(result));