#' Addition
#'
#' In addition there is the calculus of adding natural numbers to others.
#' This mathematical operation is also popularly known as addition. The
#' final result of the addition is called the total or sum and the numbers used are
#' the parcels. The arithmetic operator, that is, the sign that indicates
#' its calculation is the (+)
#'
#' @param a number
#' @param b number
#'
#' @return number
#' @export
#'
#' @examples soma(9,2)
soma<-function(a,b){
a+b
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.