mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-29 01:13:47 +00:00
15 lines
209 B
Markdown
15 lines
209 B
Markdown
# Algorithm examples
|
|
|
|
To run:
|
|
|
|
```bash
|
|
cargo run fibonacci.roc
|
|
cargo run quicksort.roc
|
|
```
|
|
|
|
To run in release mode instead, do:
|
|
|
|
```bash
|
|
cargo run --release fibonacci.roc
|
|
cargo run --release quicksort.roc
|
|
```
|