R/colar.R

Defines functions colar

Documented in colar

#' colar
#' cola duas strings (x,y) com um espaço entre eles
#' @param x uma string
#' @param y outra string
#' @export
colar <- function(x,y) {
  paste(x,y)
}
rocha02/MeuPacote documentation built on Aug. 21, 2020, 2:48 p.m.