brainhug

Build Status crate documentation

brainhug is a crate that is used to interpret brainf*ck code to any other language

Current languages covered are :

Why the name brainhug ?

Inspired from link

Usage

Add this to your Cargo.toml:

toml [dependencies] brainhug = "0.2.0"

and this to your crate root:

rust extern crate brainhug; use brainhug::Lang;

Example

```rust extern crate brainhug; use brainhug::Lang;

fn main() { // will print Hello, World! let input = "++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.";

println!("{}", brainhug::generate(Lang::C, input));

} ```

License

Licensed under