R/hello.R

Defines functions hello

Documented in hello

#' @title hello
#' @description this is our hello world function
#' @param user1 character representing user 1
#' @param user2 character representing user 2
#' @export
#' @examples
#' hello("tom","sally")
#' hello("sally","tom")

hello <- function(user1, user2) {
  print(paste0("Hello, ", user1, " and ", user2))
}
scworland-usgs/demoPackage documentation built on May 29, 2019, 4:53 p.m.