rubyx/lib/vm/values/mystery.rb

9 lines
163 B
Ruby
Raw Normal View History

module Vm
class Mystery < Word
# needs to be here as Word's constructor is private (to make it abstract)
def initilize reg
super
end
end
end