Is there a way to print text and variable contents on the same line? For example,
wd <- getwd() print(\"Current working dir: \", wd)
I c
Or using message
message
message("Current working dir: ", wd)
@agstudy's answer is the more suitable here