mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
17 lines
273 B
Markdown
17 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`.
|