#' A hello world function
#'
#' @description something something
#' @param x a person name to say hello
#'
#' @return output from \code{\link{print}}
#' @export
#'
#' @import magrittr
#'
#' @examples
#' hello('andrea')
#' \dontrun{
#' hello('fede')}
#'
hello <- function(x) {
x22 <- x %>% as.character()
return(x22)
# print(paste0('hello', x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.