diff options
author | Marvin Borner | 2023-11-06 00:24:11 +0100 |
---|---|---|
committer | Marvin Borner | 2023-11-06 00:24:31 +0100 |
commit | 9d722a0b6138827de743f9fe4acbf3f2c1830bb0 (patch) | |
tree | 789b8df72f0f2cae2bb4009ddb93b914bf83eb2c /docs/wiki_src/coding/IO.md | |
parent | 027fc0f91ae7bf64564091fbcec7694f5d53d8fe (diff) |
Started creating new docs with wiki
Diffstat (limited to 'docs/wiki_src/coding/IO.md')
-rw-r--r-- | docs/wiki_src/coding/IO.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/wiki_src/coding/IO.md b/docs/wiki_src/coding/IO.md new file mode 100644 index 0000000..974f98e --- /dev/null +++ b/docs/wiki_src/coding/IO.md @@ -0,0 +1,29 @@ +# IO + +Bruijn supports a variant of John Tromp's monadic IO[^1]. + +Every program's `main`{.bruijn} function has an additional abstraction +that gets applied with a lazy list of input bytes. These bytes are +encoded as the syntactic sugar encoding of binary numbers, which can be +manipulated with [`std/Number/Binary`](/std/Number_Binary.bruijn.html). + +You can use [`std/Monad`](/std/Monad.bruijn.html) to interact with the +input monadically, or simply use [`std/List`](/std/List.bruijn.html) +operations to work with the input as a normal list. + +## Example + +``` bruijn +:import std/List . + +# reverse the input list +main [<~>0] +``` + +``` bash +$ printf "tacocat" | bruijn reverse.bruijn +tacocat +``` + +[^1]: [Tromp, John. "Functional Bits: Lambda Calculus based Algorithmic + Information Theory." (2023).](https://tromp.github.io/cl/LC.pdf) |