R/create_age.R

#' Create an age for someone
#'
#' @details This is a useless function we created to learn! Gives an age.
#'
#' @return age (integer)
#' @export
#'
#' @examples
#' create_age()
create_age <- function(){
  age <- sample(1:100, size = 1)
  return(age)
}
jaymon0703/iemand documentation built on May 25, 2019, 6:23 p.m.