#_class_ <b>comment</b> +test+
#  Indenting...
#woowang, \+good\+ method_1
#--
#Normal Comment, so it does not include to rdoc
#++
#
#So rdoc comment is back!!
#= Link Test
#
#link?? http://dev.heartsavior.net
#
#== Link => Image??
#
#http://sstatic.naver.com/search/100_thumb_nx3/71/32471.jpg
#
#My Blog[http://www.heartsavior.net]
#
#{MyBrute,fishing}[http://heartsavior.mybrute.com]
#
#= List Test
# * List1
#   (Comment on List1)
# * List2
#
# ----
#Why RDoc doesn't make line bar ?? I'm wrong??
#
#[cat]      cat is cat
#[+cat+]    command that copies stdin to stdout
# 
#cat::      cat is cat
#+cat+::    command that copies
#           stdin to stdout
#
#<tt>--output</tt> <i>name [, name]</i>::
#     output parameter
#     that you are one
#
#<tt>--output</tt> <i>name [, name]</i>:: output parameter
#                                          that you are one
#
class TestRDoc

  # test do appear RDoc
  def test
    
  end

  # method_1 doe appear RDoc
  def method_1
    
  end

  # class_method_1 do appear RDoc
  def TestRDoc.class_method_1
    
  end
end
