Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 751 Bytes

README.md

File metadata and controls

37 lines (23 loc) · 751 Bytes

Brainfuck Interpreter 01

Usage

brainfck <source file>

Explanation

Brainfuck is a esoteric programming language that was designed to create the smallest compiler possible. Unfortunately, my complier takes up 160 kilobytes, but good enough.

Further plans

  1. Enable it to generate an executable
  2. Optimise it better
  3. ???

Bug reports

Report if you want to. Doesn't matter. It's a hobby project. No one will use this anyways. (:

Build instructions

In project root directory, run

make debug  # Debug build 
make        # Dev build 
make prod   # Production build

Dependencies

  • None

If your compiler is not g++, just replace CC=g++ in the makefile with the compiler of your choice.