#' @title Exponent calculation
#' @description A function that calculates the value of x^2.
#' @param x any integer
#'
#' @return a vector of squared components in the form of a vector project
#' @export
#'
#' @examples myf(4) = 16
#'
myf = function(x){
x^2
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.