Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.02 KB

File metadata and controls

39 lines (29 loc) · 1.02 KB

Tests

BF interpreter

Introduction

This is BF interpreter. It's written in C. It's not very fast, but it's very simple. It's also very small. It's only 200 lines of code.

But what is Brainfuck?

Compile code

To compile code, you need to run make command:

$ make

Run application

To run code, you need to pass file with BF code as argument. For example:

$ ./bf <file>

TODO:

Based on work by:

  • @maxcountryman
  • @himehowareu
  • @D0tty