boolfuck 1.0.1

A simple unoptimized boolfuck interpreter which can convert brainfuck code.
Documentation
  • Coverage
  • 47.37%
    9 out of 19 items documented5 out of 5 items with examples
  • Size
  • Source code size: 15.6 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.93 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • lcnr/boolfuck
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • lcnr

boolfuck

A simple boolfuck interpreter made in rust

Examples

  • "Hello, World!"
extern crate boolfuck;
use boolfuck::Boolfuck;

fn main() {
  let program = Boolfuck::new(";;;+;+;;+;+;
                              +;+;+;+;;+;;+;
                              ;;+;;+;+;;+;
                              ;;+;;+;+;;+;
                              +;;;;+;+;;+;
                              ;;+;;+;+;+;;
                              ;;;;;+;+;;
                              +;;;+;+;;;+;
                              +;;;;+;+;;+;
                              ;+;+;;+;;;+;
                              ;;+;;+;+;;+;
                              ;;+;+;;+;;+;
                              +;+;;;;+;+;;
                              ;+;+;+;");
                              
  program.run(false);
}

For a general explanation of boolfuck visit the offical website.