Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 785 Bytes

README.md

File metadata and controls

16 lines (15 loc) · 785 Bytes

BrainF-ckInterpreter WIP

My attempt at writing an interpreter for BrainF*ck

Using this tool

  • If you want to use this tool you will have to compile it yourself rn (make file is included)
    • Compiles with the command make
  • To use this tool as a command line interpreter just run the executable bf and you should ge the prompt brainf*ck>
  • To run a file just run bf {file path}

Comments

  • Command line tape's length is 1000
  • Memory is 1000 unsigned chars
  • The pointer starts at the 5th cell
  • This tool reads from stdin and prints to stdout

Screenshots