#' Short description of what the function does
#' @param x indicates the vector you will use
#' @return Returns a mean value
#' @examples
#' # This example returns a value of 2
#' hello(x = c(1,2,3))
#' @export
hello <- function(x) {
print("Hello, world!")
print("This is my first commit")
return(mean(x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.