Another side project interpreter.
The easiest way to install the interpreter is to use cargo
.
$ cargo install bjorn
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
cargo uninstall bjorn