Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with
or
.
Download ZIP
A minimal brainfuck interpreter with an unbound tape.
C Shell
Branch: master

Fetching latest commit…

Cannot retrieve the latest commit at this time

Failed to load latest commit information.
src
Makefile.am
Makefile.in
PKGBUILD
README.md
aclocal.m4
compile
config.h.in
configure
configure.ac
depcomp
install-sh
missing

README.md

bf - a minimal brainfuck interpreter

Features :

  • Unbound data tape, can be as big as your RAM will let it
  • Unbound program size, can be as big as your disk will let it
  • Extremely minimal
  • Supports comments

Installation

  • Execute ./configure in the main directory.
  • Execute sudo make install in the main directory.

After these commands have been run, the program should reside as "bf" in the /usr/bin directory (no other files are installed.)

The program is now installed and you can proceed to Basic Usage.

Basic usage

  • To execute a program, run bf my_bf_program.bf from the terminal.
  • Use the # character to mark the rest of a line as a comment.
Something went wrong with that request. Please try again.