Nothing
## a class to hold snippets of C code
setClass(
"Csnippet",
slots=c(
text="character"
),
prototype=prototype(
text=character(0)
)
)
Csnippet <- function (text) {
new(
"Csnippet",
text=as.character(text)
)
}
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.