Tim Morgan
Tim Morgan
Here's another one š : ```ruby def build(&b) define_method(:foo, &b) end build { return 42 } p foo # => 42 with MRI # => unexpected return (LocalJumpError) with Natalie...
I've been thinking about this a lot actually. Given that we don't support dynamic eval, we can know ahead-of-time where `foo(...)` occurs, but I don't think other Rubies have that...
I dig it š (either one)
>Remove the interpreted mode completely from Natalie Let me consider this... š¤