Metadata-Version: 2.1
Name: clibf
Version: 1.0.2
Summary: CLI tool to execute Brainfuck code from files and strings
Home-page: https://github.com/donno2048/bf-interpreter
Author: Elisha Hollander
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# clibf

## Install it from PyPi

```
pip install clibf
```

## Install it from GitHub

```
pip install git+https://github.com/donno2048/bf-interpreter
```

## Execute a brainfuck file

```
clibf -f my_bf_script.b
```

## Execute a string as a brainfuck code

```
clibf -s "++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.
"
```

## Execute a file with a GUI

```
clibf -g
```


