Concatenate to screen without spaces
cat0.Rd
The cat0 function is to cat what paste0 is to paste; it simply makes concatenating many strings without a separator easier.
Value
Nothing (invisible NULL
, like cat).
Examples
cat0("The first variable is '", names(mtcars)[1], "'.");
#> The first variable is 'mpg'.