R/jumuisha.R

Defines functions jumuisha

Documented in jumuisha

#' Jumuisha
#'
#' A function that takes in two numbers and add them.
#'
#' @param x First number
#' @param y Second number
#'
#' @return A summation of x and y
#'
#' @export
#'
#' @examples
#' jumuisha(10, 30)
jumuisha <- function(x, y){
  x+y
}
Shelmith-Kariuki/rjujubi documentation built on Dec. 18, 2021, 1:07 p.m.