quietR (version 0.1.0)

cat: Output Functions

Description

Masked output functions (cat, message, print) that can be toggled with [verbosity] functions. Instead of implementing your own verbose handling system, use quietR.

Usage

cat(...)

message(...)

print(...)

Arguments

...

Arguments passed to masked output function

Examples

Run this code
# NOT RUN {
print("Hello World!")
disable_verbose()
print("Hello World!")
# }

Run the code above in your browser using DataCamp Workspace