rubyx/lib/virtual/integer.rb

11 lines
104 B
Ruby
Raw Normal View History

require_relative "value"
module Virtual
2014-06-30 13:56:58 +02:00
class Integer < Value
2014-06-30 13:56:58 +02:00
def initialize
end
end
2014-06-30 13:56:58 +02:00
end