aboutsummaryrefslogtreecommitdiff
path: root/src/io.js
blob: 27f46b64f822de45138e6fd6dc634e6907ff3b6f (plain) (blame)
1
2
3
4
5
6
7
8
9
import * as state from "./state.js"

export const read =        st => s => s(st)(st.read())
export const write = ch => st => s => s(st)(st.write(ch))

export const unit = state.unit
export const bind = state.bind

export const DO = state.DO