DEV Community

Tingwei
Tingwei

Posted on

Implementing the Brainfuck compiler front end in C#

In the previous article, I wrote a Brainfuck interpreter.
This time I'm trying to build a Brainfuck compiler which targets Common Intermediate Language (CIL). I did not use any parser generator and write a recursive descent parser by hand.

Code: Compiler front end

Top comments (0)