Value
Console output, with invisible return of x
input.
Functions
txt()
: Print to screen, wrapping to screen with automatically.
Exporting txt
instead of text
here, to avoid masking stats::text
.
verbatim()
: Print to screen, without any automatic wrapping.
Examples
## Wrapping
txt(c("hello", " world"))
#> hello world
## No wrapping
verbatim(c("hello", "world"))
#> hello
#> world