roc/examples/quicksort/README.md
2020-10-04 16:35:23 -04:00

18 lines
273 B
Markdown

# Quicksort
To run:
```bash
$ cargo run run Quicksort.roc
```
To run in release mode instead, do:
```bash
$ cargo run --release run Quicksort.roc
```
## Troubleshooting
If you encounter `cannot find -lc++`, run the following for ubuntu `sudo apt install libc++-dev`.