#' Make square the sum of two numbers
#'
#' @param x numeric
#'
#' @return tbl_df
#' @export
#' @examples
#'#' freq_out(iris$Species)
sumNSquare <- function(a,b) {
c <- (a+b)^2
return(c)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.