Nothing
      nstr <- function(string, times) {
  if(!is.atomic(string))
    stop("argument string must be an atomic vector")
  if(!is.numeric(times))
    stop("len must be a numeric vector")
  if(length(string) == 0)
    return(NULL)
  if(length(times) == 0)
    return(character(0))
  return(.Call("do_nstr", as.character(string), as.integer(times)))
}
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.