##' Substract two numbers (Description)
##'
##' We want to substract two numbers, blalala... (Details)
##' @title Substract two numbers
##' @param x first number
##' @param y second number
##' @return x - y
##' @author Seven
##' @export
##' @examples
##' g(2, 1)
g <- function(x, y) x - y
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.