1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
require 'singleton' class VM class BoolFalse include Singleton def raw false end def to_ruby raw end def to_s '#f' end end end