R/two.R

#' @title Function Two
#' @param x : numeric
#' @param ... : further optional parameters
#'
#' @return numeric
#'
#' @examples
#' two (7)
#' @export

two <- function(x, ...){
  m = x + 2  
  return ( m ) 
} 
paolo-pellizzer-sdg/mario documentation built on May 9, 2019, 2:24 a.m.