roc/examples/quicksort
Joshua Warner 8b58d5cbc7 Switch to always encoding package names / paths as strings
This will simplify parsing and make it possible to have a uniform lexer for the language. Previously unquoted package names were allowed to include '-'s, which aren't valid identifiers.

In the future, we'll distinguish local paths from packages in the package-manager by looking for a ".roc" suffix, which should only be present in local paths.
2021-12-23 20:11:14 -08:00
..
platform Switch to always encoding package names / paths as strings 2021-12-23 20:11:14 -08:00
.gitignore Add some .gitignores 2020-11-23 00:24:40 -05:00
Quicksort.roc Run formatter on all examples 2021-12-21 17:17:31 -08:00
README.md Drop some more references to needing C++ 2021-08-29 16:59:15 -04:00

Quicksort

To run:

$ cargo run Quicksort.roc

To run in release mode instead, do:

$ cargo run --release Quicksort.roc