Next: , Previous: The parsing process, Up: Parser



10.2 注释

R里面的注释会被解释器忽略。一行里面, # 开始到末尾部分都看作是注释,除非 # 字符加了引号。例如,

     > x <- 1  # This is a comment...
     > y <- "  #... but this is not."