#' Creates an intro sentence
#' Contains one function, aboutme, that prints a statement about the user.
#'
#' @param names A character containing the input name
#' @param years A number indicating age in years
#' @param favs A character containing an animal species
#'
#' @return
#' @export
#'
#' @examples
aboutme <- function(names, years, favs) {
print(paste0("Hello ", names, ", I am ", years, " years old and my favorite animal is a ", favs))
}
# devtools::document()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.