brainhug
is a crate that is used to interpret brainf*ck code to any other language
Inspired from link
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;
```rust extern crate brainhug; use brainhug::Lang;
fn main() {
// will print Hello, World!
let input = "++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.";
println!("{}", brainhug::generate(Lang::C, input));
} ```
Licensed under