diff options
author | Marvin Borner | 2024-11-27 02:12:12 +0100 |
---|---|---|
committer | Marvin Borner | 2024-11-27 02:27:48 +0100 |
commit | 6da602b0a29afcd2aa15725547375a80e30b3983 (patch) | |
tree | bb268dc7935696c2687c4ec151c2e0108536fa6f /src/io.js |
initial commit
Diffstat (limited to 'src/io.js')
-rw-r--r-- | src/io.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/io.js b/src/io.js new file mode 100644 index 0000000..27f46b6 --- /dev/null +++ b/src/io.js @@ -0,0 +1,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 |