rubyx/lib/virtual/mystery.rb

19 lines
215 B
Ruby
Raw Normal View History

module Virtual
class Mystery < Value
2014-07-01 14:57:13 +02:00
def initialize
end
def as type
type.new
end
end
2014-07-01 14:57:13 +02:00
class TrueValue < Value
end
class FalseValue < Value
end
class NilValue < Value
end
end