R/bonjour.R

#!/usr/bin/Rscript

#' bonjour Function
#' @param FirstName A character string corresponding to
#' the firstname of the person to wil recieve the hello
#' @return un bonjour qui ne coute rien.
#' @export
#'
#' @examples
#' bonjour()
bonjour <- function(FirstName=" ") {
  MessageToPrint = trimws(paste("Bonjour",FirstName,sep = " "))
  return(MessageToPrint)
}
NicolasEDubois/TtestBootstrap documentation built on May 14, 2019, 10:34 p.m.