powered by
The cat0 function is to cat what paste0 is to paste; it simply makes concatenating many strings without a separator easier.
cat0(..., sep = "")
The character vector(s) to print; passed to cat.
The separator to pass to cat, of course, "" by default.
""
Nothing (invisible NULL, like cat).
NULL
# NOT RUN { cat0("The first variable is '", names(mtcars)[1], "'."); # }
Run the code above in your browser using DataLab