R/create_age.R

#' Create an age for someone
#'
#' @details This is a useless function created for learning :)
#' @return age (integer)
#' @export
#'
#' @examples create_age()
#'
create_age <- function(){
  age <- sample(1:100, size=1)
  return(age)
}
theoniphotopoulou/iemand documentation built on May 26, 2019, 5:32 a.m.