R/f.R

Defines functions f

Documented in f

#'
#' This is a title
#'
#' @param x This is the first argument
#' @param y This is the second argument
#'
#' @return Return a numeric value
#' @export
#'
#' @examples
#' f(2,3)
#'

f <- function(x, y) {
  x * y
}
DiaryTenompitia/Rpack documentation built on May 4, 2019, 12:54 a.m.