If I enter
print(cat(\"\"))
I get
NULL
I want to use cat() to print out the progress of an R sc
cat()
I do not see the need to use print(cat()). To printing a message cat() is already sufficient. This may be what you are looking for:
print(cat())
for (j in 1:n) { cat("Running loop", j, "of", n, "\n") }