diff --git a/prqlc b/prqlc new file mode 100644 index 0000000..0501d02 --- /dev/null +++ b/prqlc @@ -0,0 +1,16 @@ +# PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement. + +# Run the compiler interactively: +prqlc compile + +# Compile a .prql file standard output: +prqlc compile + +# Compile a .prql file to a .sql file: +prqlc compile + +# Compile a query: +echo "from employees | filter has_dog | select salary" | prqlc compile + +# Watch a directory and compile on file modification: +prqlc watch