#'Função para subtrair
#'
#'Subitrai 2 números
#'
#'@param a um número
#'@param b outro número
#'
#'@examples
#'subtrair(3,4)
#'
#'@export
subitrair <- function(a, b)
{
a - b
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.