An implementation of the CIE 9618 pseudocode spec, designed with this reference in mind
To run an example
bash
cargo run --example factorial
To use as a standalone binary(precompiled binaries are only available for windows atm)
```powershell
pseudocode.exe path/to/your/code.pseudo ```
To run with the parse tree and abstract syntax tree shown run in dev mode
bash
cargo run -- "example.pseudo"
To silence the output and only show the program output run with release
bash
cargo run --release - "example.pseudo"
Please reference the wiki