Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 2.14 KB

README.md

File metadata and controls

31 lines (25 loc) · 2.14 KB

BrainF>>k V1.3.3

Fully functional BF and BF-equivalent interpreter

Build:

Run make in the top-level directory.

Usage:

bf [-help] [options] file

Specifics

Options
-d Enable debugging and diagnostics
-h Print help text
-L <language> Sets the language to interpret (BF is default)
-P <print mode> Sets the print mode for output of the language (char is default)
-T <lang1> <lang2> Translates the file given from <lang1> to <lang2>
Languages
BF Brainf**k (default)
??? ???
TinyBF TinyBF
Print Modes
char Print each output byte as a character (default)
num Print each output byte as space-separated numerical values
hex Print each output byte as space-separated hexadecimal values
smart If the byte is printable ASCII, print as a character. Otherwise, as hexadecimal.