R/create_age.R

Defines functions create_age

Documented in create_age

#' Create an age for someone
#'
#'@details "This function creates a random age for a random person"
#'
#' @return
#' @export
#'
#' @examples
create_age <- function(){
    age <- sample(1:100, 1)
    return(age)
}
FCervantes/iemand documentation built on May 26, 2019, 7:26 a.m.