Nothing
#!/usr/bin/env Rapp
#| name: magic-8-ball
#| description: |
#| Ask a yes-no question and get your answer.
#| description: question you want to ask. The default
question <- NULL
if(is.null(question)) {
cat("question: ")
question <- readLines(file("stdin"), 1)
} else {
cat("question:", question, "\n")
}
## pulled from wikipedia
choices <- c(
"It is certain.",
"It is decidedly so.",
"Without a doubt.",
"Yes definitely.",
"You may rely on it.",
"As I see it, yes.",
"Most likely.",
"Outlook good.",
"Yes.",
"Signs point to yes.",
"Reply hazy, try again.",
"Ask again later.",
"Better not tell you now.",
"Cannot predict now.",
"Concentrate and ask again.",
"Don't count on it.",
"My reply is no.",
"My sources say no.",
"Outlook not so good.",
"Very doubtful."
)
cat("answer:", sample(choices, 1), "\n")
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.