R/hola.R

Defines functions hola

Documented in hola

#' Greetings in Spanish
#'
#' This function says hi to people
#'
#' @param nombre The name of the person we are saying hi to in Spanish.
#'
#' @return A `character(1)` with the greetings in Spanish
#' @export
#'
#' @examples
hola <- function(nombre) {
    paste0("Hola ", nombre, "=)")
}
lcolladotor/cdsb2020this documentation built on Aug. 5, 2020, 12:06 a.m.