prql-compiler
contains the implementation of PRQL's compiler, written in rust.
For more on PRQL, check out the PRQL website or the PRQL repo.
prql-compiler
can be installed with cargo
:
sh
cargo install prql-compiler
...or built from source:
```sh
cargo install --path . ```
```sh $ echo "from employees | filter has_dog | select salary" | prql-compiler compile
SELECT * FROM employees WHERE has_dog ```