假设我有以下功能:
sqrt_x = function(x) {
sqrtx = x^0.5
return(list("sqrtx" = sqrt))
}
attr(sqrt_x, "comment") <- "This is a comment to be placed on two different lines"
如果我输入
comment(sqrt_x)
我明白了
[1] "This is a comment to be placed on two different lines"
然而,我想要的是评论在两个不同的行上返回(它也可以是更多的行和不同的评论元素。任何想法都值得赞赏。