Nothing
# Generate single word of random letters of length len
.generate_word <- function(len = 10) {
paste(sample(letters, len, replace = TRUE), collapse = "")
}
# Generate sequence of random-letter words based on vector of word lengths
.generate_sentence <- function(lenVec = c(10, 15, 5)) {
paste(vapply(X = lenVec
, FUN = .generate_word
, FUN.VALUE = character(1)
, USE.NAMES = FALSE
), collapse = " ")
}
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.