#' roulette
#'
#' playing roulette
#'
#'
#' @return a value between 0 and 36
#'
#'
rou <- function(){
x <- seq(0:36)
sample(x,1)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.