R/myloop.R

Defines functions myloop

Documented in myloop

#' Print days of the week
#'
#' @param i Charactor vector of some days of the week
#'
#' @return A charactors vector
#' @export
#'
#' @examples
#' myloop(c("Mon", "Tue", "Wed"))
myloop <- function(i){
  paste0("Today is ", i)
}
LiYingWang/mytest documentation built on May 7, 2019, 8:20 a.m.