Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumRubyrefinements usingSingle-choice MCQ

With this refinement active via using, what is the result of "bob".send(:greet)?

module RefMod refine String do def greet; "hi #{self}"; end end end using RefMod "bob".send(:greet)