1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# gbf
I was bored and made this :star: gleaming brainfuck interpreter.
## How to use?
### As library
```gleam
import gbf
import gleam/io
pub fn main() -> Nil {
let input =
"++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++."
let assert Ok(vm) = gbf.run(input)
vm
|> gbf.output
|> io.println
// > "Hello World!"
}
```
### As CLI tool
TODO: yet to be implemented
|