2022-01-31 16:40:57 +05:30

13 lines
309 B
Markdown

# Brainfuck
## References
- Esolangs wiki: https://esolangs.org/wiki/Brainfuck
## Implementation details
- The tape is semi-unbounded (0, 1, 2 ...)
- Cell size is 8 bits, and allows values in the range `[-128, 127]`.
- Value `10` is designated for newlines.
- The value `0` is returned on reaching `EOF`.