R/Colar.R

Defines functions colar

Documented in colar

#' 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 = " ")
}
ViniciusJacobs/r4ds2 documentation built on Sept. 2, 2020, 12:36 p.m.