4calctax.rb
    注释
    本书附带的许多示例源代码都有会被 Ruby 解释器忽略的注释。注释可以放置于 # 字符之后,该字符之后的一行文本都将会被视为注释:
    # this is a comment puts( “hello” ) # this is also a comment如果你想注释掉多行文本你可以在文本的首行添加 =begin 以及在末行添加 =end=begin=end 必须左对齐顶格写): =begin This is a multiline comment =end