10 lines
159 B
Ruby
10 lines
159 B
Ruby
module Vm
|
|
class Reference
|
|
# needs to be here as Word's constructor is private (to make it abstract)
|
|
def initilize reg
|
|
super
|
|
end
|
|
|
|
end
|
|
end
|