R/about_me.R

Defines functions about_me

Documented in about_me

#' Name and Date :)
#'
#' @param name insert your name here
#' @param day insert a day of the week
#' @param day_number insert the numerical day of the week (e.g., tuesday = 5)
#'
#' @return
#' @export
#'
#' @examples
about_me = function(name, day, day_number) {
  print(paste0("Hello, ", name, " is today ", day, " the ", day_number, "?"))
}
RyanMunnikhuis/artichokecoyote documentation built on Dec. 18, 2021, 11:55 a.m.