Next: Tokens, Previous: The parsing process, Up: Parser
R里面的注释会被解释器忽略。一行里面, 从 # 开始到末尾部分都看作是注释,除非 # 字符加了引号。例如,
#
> x <- 1 # This is a comment... > y <- " #... but this is not."