Code Monkey home page Code Monkey logo

blazefuck's Introduction

blazefuck

A blazingly-fast (interactive) Brainfuck interpreter, written in Rust.

Description

A tiny, efficient Brainfuck interpreter, with a REPL for easy, on-the-fly evaluation

Brainfuck is a simple esoteric language with a minimal subset of commands, you can read more here.

Getting Started

Dependencies

  • Install the rustup toolchain for your system.

Installing

  • Add Cargo's binary directory to your path environment variables
    The rustup installer should do this for you, but if not, it should be located at ~/.cargo/bin (Linux) or %USERPROFILE\.cargo\bin (Windows).
  • Simply run cargo install blazefuck at a terminal and it'll be installed from crates.io.

Executing program

  • Type blazefuck at a prompt
$ blazefuck
blazefuck 1.0.0 on windows, run with "-h" or "--help" for more information.
Use "cells" to show the cell stack and "exit" to exit the interpreter.
>>> _

You can then use the normal Brainfuck commands, as follows:
> Increment the data pointer (to point to the next cell to the right).
< Decrement the data pointer (to point to the next cell to the left).
+ Increment (increase by one) the byte at the data pointer.
- Decrement (decrease by one) 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.

Also cells and exit will show the current cell stack and exit the REPL, respectively.

  • Alternatively a source file can be specified with blazefuck [FILE], some examples can be found here.
$ blazefuck hello.bf
Hello World!

$ _
  • Some flags can be specified as follows:
-d, --debug     Shows the cell stack after every command
-s, --strict    Activates strict mode
  • Strict mode has some key differences, as opposed to normal mode, some programs will not run well with it enabled.
    It:
    • Disallows access of any cells not between #1 and #30000, normal mode wraps around to the beginning or end.
    • Disallows cell data being incremented or decremented past 0-255, normal mode also wraps around.

Building from source

  • Clone this repository
$ git clone https://github.com/poopsicles/blazefuck
  • Switch to the newly created directory
$ cd ./blazefuck
  • Compile using cargo
$ cargo build
  • Cargo will grab the required dependencies and create the binary at ./target/debug/blazefuck

Version History

  • 1.0
    • Initial release

License

This project is licensed under the MIT License, more details here.

blazefuck's People

Contributors

poopsicles avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.