Skip to content

Instantly share code, notes, and snippets.

> module BF () where
This is a brainfuck interpreter.
Brainfuck is "an esoteric programming language noted for its extreme
minimalism" (Wikipedia). It is modeled as a very simple machine, with the
following parts:
* an array of at least 30,000 byte cells;
* a data pointer;