bf2c icon indicating copy to clipboard operation
bf2c copied to clipboard

:bug: Not the smallest compiler ever

bf2c

Compile Brainfuck to C.

Install

$ npm i bf2c

Examples

CLI
$ bf2c examples/hello.b > hello.c && gcc hello.c && ./a.out
Hello World!
Module
var bf2c = require("bf2c");
var code = bf2c("+++++++++++++.");