Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardRubyBinding objectsSingle-choice MCQ

What does this print, and what does it show about locals created through Binding#eval?

def m b = binding b.eval("z = 99") defined?(z) ? "visible" : "not visible" end p m