R/jumla.R

Defines functions jumla

Documented in jumla

#' jumla
#' takes in two numbers, and adds them.
#'
#' @param x The first argument
#'
#' @param y The second argument
#'
#' @return a value that is the summation of x and y
#' @export
#'
#' @examples
#' summation <- jumla(10,20)
#'
jumla <- function(x,y){
  x + y
}
Shelmith-Kariuki/rAfrica documentation built on Oct. 11, 2020, 12:50 a.m.