Skip to main content

A BrainFuck Interpreter

Project description

BrainFuck interpreter

  • A simple to use, open source brainfuck interpreter
  • Easy to run
  • Optional debugger,
  • Changeable cell size
  • Print as an integer insted of ASCII
  • And mush more features

What is BrainFuck?

brainfuck is an esoteric programming language with only 8 oparetions

operation Explanation
> increment the data pointer.
< decrement the data pointer.
+ increment the byte at the data pointer.
- decrement the byte at the data pointer.
. output the byte at the data pointer.
, accept one byte of input, storing its value in the byte at the data pointer.
[ if the byte at the data pointer is zero, then instead of moving the instruction pointer forward to the next command, jump it forward to the command after the matching ] command.
] if the byte at the data pointer is nonzero, then instead of moving the instruction pointer forward to the next command, jump it back to the command after the matching [ command.

More Information Even More Information

To download the required packages type in the shell

$ python -m pip install -r requirements.txt

Made by @swimmy4days

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

brainfuck-swimmy4days-0.0.1.tar.gz (1.6 kB view hashes)

Uploaded Source

Built Distribution

brainfuck_swimmy4days-0.0.1-py3-none-any.whl (2.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page