Nothing
#' A wrapper for \code{\link{sort}} to sort using the \dQuote{C} collating rules.
#'
#' @param ...
#' Options passed to sort.
#' @return See \code{\link{sort}}.
#' @export
lsort = function(...) {
cur = Sys.getlocale("LC_COLLATE")
if (cur != "C") {
Sys.setlocale("LC_COLLATE", "C")
on.exit(Sys.setlocale("LC_COLLATE", cur))
}
sort(...)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.