#' Colar
#'
#' Agrupa nome e sobrenome
#'
#' @param x Primeiro nome
#' @param y Ultimo nome
#'
#' @return A funcao tera como saida o nome e ultimo sobrenome
#'
#' @export
#'
#'
colar <- function(x, y) {
stringr::str_c(x,y, sep = " ")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.