# bobbylisp another lisp dialect > Also available on https://git.ablecorp.us/azur/bobbylisp ## Installation ```bash $ bash <(curl -s https://raw.githubusercontent.com/azur1s/bobbylisp/master/install.sh) ``` The binary will be installed in `~/bin/blspc` run it with: ```console $ blspc help ``` ### Example ```console $ blspc compile ./example/hello.blsp $ blspc run ./hello.bsm Hello, World! ``` ## Progress: DONE: - Parsing, Compiling, Running(VM) - Intrinsic: - `fun`, `do`, `print`, `if` - Math: - `+` , `add` - `-` , `sub` - `*` , `mul` - `/` , `div` TODO: - Prove turing complete - Do the intrinsic left - Quote, Quasiquote, etc. - Optimizing - Remove unnecessary copying in the entire codebase (also with `.unwrap()`)