R/creat_age.R

#' Introduction to R packages; creating a Fake People
#'
#' @return Return a value for your age
#' @export
#'
create_age <- function(){
  age <- sample(1:100, size = 1)
  return(age)
}
AnriSmith/iemand documentation built on May 26, 2019, 6:38 a.m.