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

Using module_function with no arguments, what is true about methods defined AFTER it?

module M def a; "a"; end module_function def b; "b"; end end