如何在R中打印没有初始行号的文本?

use*_*767 0 indexing r character

我想在r,whiteout行号中打印一个字符!我怎么做 :

print("character ",quote = FALSE , row.names = F)
[1] character 
Run Code Online (Sandbox Code Playgroud)

row.names = F没有做任何事情!我想拥有 :

print("character ",quote = FALSE, something to remove the line index)
     character 
Run Code Online (Sandbox Code Playgroud)