R/Greetings.R

#' Says hello in Scots
#'
#' A terrible stereotypical view of Scotland
#'
#' @param language Which language to say hello in. Possibilities
#' are "Scots" and "English".
#'
#' @rdname Greetings
#' @export
how_are_you <- function(language = "Scots") {
  if (language == "Scots")
    print("Whit like are ye?")
  else print("How are you?")
}
gdking01/ScottishHillRacing documentation built on May 17, 2019, 12:12 a.m.