fork download
  1. module Foo; def self.const_missing(n); const_set(n, "You were looking for #{n}"); end; p Bar; end
Success #stdin #stdout 0s 4716KB
stdin
Standard input is empty
stdout
"You were looking for Bar"