Nothing
#' abseil
#'
#' Wraps the 'Abseil' 'C++' library for use by R packages. Original files are
#' from <https://github.com/abseil/abseil-cpp>. Patches are located at
#' <https://github.com/doccstat/abseil-r/tree/main/local/patches>.
#'
#' @docType package
#' @name abseil
#' @rdname abseil-package
#' @examples
#' \donttest{
#' Rcpp::cppFunction(r"{
#' #include "absl/strings/str_join.h"
#' std::string joinString() {
#' std::vector<std::string> v = {"foo","bar","baz"};
#' return absl::StrJoin(v, "-");
#' }
#' }", depends = "abseil")
#'
#' joinString()
#' }
NULL
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.