Nothing
## File Name: cat_paste.R
## File Version: 0.03
cat_paste <- function(...)
{
args <- list(...)
N1 <- length(args)
res <- args[[1]]
if (N1 > 1){
for (nn in 2:N1){
res <- paste0( res, args[[nn]] )
}
}
cat(res)
}
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.