aboutsummaryrefslogtreecommitdiff
path: root/samples/either.js
blob: e9ad679643bd7bd2588f42d18c658a3abc77fcf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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));