R/hello.R

Defines functions hello cat_function

Documented in cat_function hello

# Hello, world!
#
# This is an example function named 'hello'
# which prints 'Hello, world!'.
#
# You can learn more about package authoring with RStudio at:
#
#   http://r-pkgs.had.co.nz/
#
# Some useful keyboard shortcuts for package authoring:
#
#   Install Package:           'Ctrl + Shift + B'
#   Check Package:             'Ctrl + Shift + E'
#   Test Package:              'Ctrl + Shift + T'

#' A Hello Function
#'
#' This function says hello to the world.
#' @param
#' @keywords hello
#' @export
#' @examples
#' hello()
#' # Prints "Hello, world!"
hello <- function() {
  print("Hello, world!")
}

#' A Cat Function
#'
#' This function allows you to express your love of cats.
#' @param love Do you love cats? Defaults to TRUE.
#' @keywords cats
#' @export
#' @examples
#' cat_function()

cat_function <- function(love=TRUE){
  if(love==TRUE){
    print("I love cats!")
  }
  else {
    print("I am not a cool person.")
  }
}
AngelCampos/testing_RPackage documentation built on Feb. 13, 2020, 10:50 a.m.