summaryrefslogtreecommitdiffhomepage
path: root/mrblib/class.rb
blob: 39e0d5091fc1b444d9528182ffc7ad2133eff765 (plain)
1
2
3
4
5
6
7
8
9
10
11
class Module
   # 15.2.2.4.12
  def attr_accessor(*names)
    attr_reader(*names)
    attr_writer(*names)
  end
  # 15.2.2.4.11
  def attr(name)
    attr_reader(name)
  end
end