diff --git a/lib/virtual/mystery.rb b/lib/virtual/mystery.rb index 363709b7..23488901 100644 --- a/lib/virtual/mystery.rb +++ b/lib/virtual/mystery.rb @@ -1,3 +1,5 @@ +require_relative "constants" + module Virtual class Mystery < Value def initialize @@ -9,12 +11,10 @@ module Virtual end - class Singleton < Value + class TrueValue < Constant end - class TrueValue < Singleton + class FalseValue < Constant end - class FalseValue < Singleton - end - class NilValue < Singleton + class NilValue < Constant end end