brainfrsck

A brainfrick interpreter written in safe rust

Usage

The main entry point is the eval_string function

Example

```rust use brainfrsck::prelude::eval_string;

let hello_world = "++++++++[>++++[>++>+++>++ +>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++ .>>.<-.<.+++.------.--------.>>+.>++.";

asserteq!( evalstring(helloworld, None)?.tostring(), "Hello World!\n".to_owned(), );

```

Notes