#' Square function
#'
#' takes vector and returns vector of squared compnents
#'
#' @param x
#'
#' @return a vector of squared components
#' @export
#'
#' @examples
#' x=1:20; myf(x)
myf = function(x){
x^2
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.