Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumRubymodule_function and extend selfSingle-choice MCQ

After defining this module with `module_function`, which statement about `Greeter#secret` is true?

module Greeter module_function def hi "hi from #{secret}" end def secret "module" end end class Foo include Greeter end