R/roulette.R

Defines functions rou

Documented in rou

#' roulette
#'
#' playing roulette
#'
#'
#' @return a value between 0 and 36
#'
#'

rou <- function(){
  x <- seq(0:36)
  sample(x,1)
}
SchoenbergA/devcreate documentation built on June 12, 2020, 12:01 a.m.