mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 16:21:11 +00:00
17 lines
265 B
Markdown
17 lines
265 B
Markdown
# Quicksort
|
|
|
|
To run:
|
|
|
|
```bash
|
|
$ cargo run Quicksort.roc
|
|
```
|
|
|
|
To run in release mode instead, do:
|
|
|
|
```bash
|
|
$ cargo run --release Quicksort.roc
|
|
```
|
|
|
|
## Troubleshooting
|
|
|
|
If you encounter `cannot find -lc++`, run the following for ubuntu `sudo apt install libc++-dev`.
|