rubyx/lib/register/mystery.rb

9 lines
169 B
Ruby
Raw Normal View History

2014-08-22 17:40:09 +03:00
module Register
class Mystery < Word
# needs to be here as Word's constructor is private (to make it abstract)
def initilize reg
super
end
end
end