Nothing
#!/usr/bin/env Rscript
# greet.R — Simple greeting script for the demo skill
#
# Usage: Rscript greet.R [name]
# Output: Hello, <name>!
args <- commandArgs(trailingOnly = TRUE)
name <- if (length(args) >= 1L) args[[1L]] else "World"
cat(sprintf("Hello, %s!\n", name))
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.