#'Função somar ou subtrair
#'
#'Essa função serve para somar ou subtrair dois numeros
#'
#' @param a um numero
#' @param b outro numero
#'
#' @examples
#' somar(3,4)
#' subtrair(3,4)
#'
#' @export
somar <- function(a, b){
a + b
}
subtrair <- function(a, b){
a - b
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.