Pinned Loading
-
A Brainfuck interpreter in Haskell. ...
A Brainfuck interpreter in Haskell. (Note: It lacks the input ',' command). Pipe in the Brainfuck code through STDIN. 1import Data.Char
23-- Cmd is the tree containing the commands in sequence.
4data Cmd = Cmd Char Cmd | Loop Cmd Cmd | Empty deriving Show
5-- Brain is the main datatype that is processed throughout the program.
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.