#' 숫자 두개를 더해서 결과를 반환시키는 프로그램
#' Add two numbers and retun added summation
#' @encoding UTF-8
#' @export
#' @param a numeric scalar
#' @param b numeric scalar
add_two <- function(a, b) {
a + b
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.