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