#' Title
#'
#' Description
#'
#' Details
#'
#' @author Kurt Wirth
#'
#' @param x A number.
#'
#' @param y A number.
#'
#' @return The sum of \code{x}^2 and \code{y}^2
#'
#' @examples
#' add_squares(1, 2)
#'
#' add_squares(1, -2)
#'
#' @keywords internal
my_sq = function(num3){
num3^2
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.