roc/examples/algorithms
2022-05-22 14:06:34 +01:00
..
fibonacci-platform formatter: remove spaces at the beginning and end of single-line square bracket expressions 2022-05-22 14:06:34 +01:00
quicksort-platform formatter: remove spaces at the beginning and end of single-line square bracket expressions 2022-05-22 14:06:34 +01:00
.gitignore Consolidate algorithm examples into one dir 2022-03-07 20:10:50 -07:00
fibonacci.roc formatter: remove spaces at the beginning and end of single-line square bracket expressions 2022-05-22 14:06:34 +01:00
quicksort.roc formatter: remove spaces at the beginning and end of single-line square bracket expressions 2022-05-22 14:06:34 +01:00
README.md Consolidate algorithm examples into one dir 2022-03-07 20:10:50 -07:00

Algorithm examples

To run:

cargo run fibonacci.roc
cargo run quicksort.roc

To run in release mode instead, do:

cargo run --release fibonacci.roc
cargo run --release quicksort.roc