rubyx/lib/virtual/mystery.rb
2014-07-01 18:58:25 +03:00

21 lines
259 B
Ruby

module Virtual
class Mystery < Value
def initialize
end
def as type
type.new
end
end
class Singleton < Value
end
class TrueValue < Singleton
end
class FalseValue < Singleton
end
class NilValue < Singleton
end
end