cat0 | R Documentation |
Same as cat
but with an additional argument end
,
which gets printed after all other elements. Inspired by pythons print
command.
Warning: this function is deprecated and should no longer be used. The function is guaranteed to be available as part of the package until the end of 2023 but might removed at any time after 31.12.2023.
cat0(..., sep = "", end = "")
... |
objects passed on to cat |
sep |
a character vector of strings to append after each element |
end |
a string to print after all other elements |
No return value, called for side effects
cat0("hello", "world") # prints "helloworld" (without newline)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.