A simple and easy to use Brainfuck code generator in Rust.
rust
println!("{}", brainwords::generate_bfcode("hello world"));
bash
++++++++[>++++++++<-]>++++++++.<+++++[>+++++<-]>++++.<++[>++<-]>+++.<[><-]>.<+[>+<-]>++.<++++++++[>--------<-]>---------------.<
+++++++++[>+++++++++<-]>++++++.<++[>--<-]>----.<+[>+<-]>++.<++[>--<-]>--.<++[>--<-]>----.<++++++++[>--------<-]>---.
Add this line to your Cargo.toml:
toml
[dependencies]
brainwords = "0.1.0"
and then add this line to your main.rs:
rust
extern crate brainwords;