A simple and easy to use Brainfuck interpreter.
rust
let mut bf = brainpreter::Inter::new();
```rust // For file use: .loadfromfile() match bf.load("++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.") {
Ok(_) => {}
Err(e) => println!("{}", e),
} ```
```rust match bf.parse() {
Ok(_) => {}
Err(e) => println!("{}", e),
} ```
```rust match bf.run() {
Ok(_) => {}
Err(e) => println!("{}", e),
} ```
bash
Hello world!
Add this line to your Cargo.toml:
toml
[dependencies]
brainpreter = "0.1.0"
and then add this line to your main.rs:
rust
extern crate brainpreter;