#' 加法算法
#'
#' @param x 第一个参数
#' @param y 第二个参数
#'
#' @return 返回加法结果
#' @export
#'
#' @examples
#' bb <- add(2,3);
add <- function(x,y) {
res <-x+y
return(res)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.