cat

Print values without escaping

Prints one or more values to stdout using a custom separator. Unlike print(), it does not add a trailing newline and supports custom separators. Strings are printed raw (with escape sequences like interpreted).

Parameters

Returns

Examples

cat("Line 1", "Line 2", sep = "\n")