This naive implementation of autoloading is dangerous and should be fixed. ``` ruby def self.const_missing(c) require Dhh.to_underscore(c.to_s) Object.const_get(c) end ```