brainwords 0.1.0

A simple and easy to use Brainfuck code generator in Rust.
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 2.48 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.05 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • DimChtz

rust-brainwords (brainwords) - v0.1.0

A simple and easy to use Brainfuck code generator in Rust.

How to use (Hello world! Example)

println!("{}", brainwords::generate_bfcode("hello world"));

Result on the console.

++++++++[>++++++++<-]>++++++++.<+++++[>+++++<-]>++++.<++[>++<-]>+++.<[><-]>.<+[>+<-]>++.<++++++++[>--------<-]>---------------.<
+++++++++[>+++++++++<-]>++++++.<++[>--<-]>----.<+[>+<-]>++.<++[>--<-]>--.<++[>--<-]>----.<++++++++[>--------<-]>---.

Installation

Add this line to your Cargo.toml:

[dependencies]

brainwords = "0.1.0"

and then add this line to your main.rs:

extern crate brainwords;