[](https://travis-ci.org/matthieugouel/bjorn)

# Bjørn
Another side project interpreter.
## Installation
The easiest way to install the interpreter is to use `cargo`.
```
$ cargo install bjorn
```
## Usage
First write some code in `bjorn` language in a file (ex. test.bj).
```
def add(a, b):
return a + b
print(add(1, 1))
```
Then simply pass the file path as an argument to the `bjorn` interpreter.
```
$ bjorn test.bj
```
It should output :
```
2
```
## Uninstallation
```
cargo uninstall bjorn
```