olahol / bf2c

:bug: Not the smallest compiler ever

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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("+++++++++++++.");

About

:bug: Not the smallest compiler ever


Languages

Language:JavaScript 100.0%