eval()
Evaluates the instruction sequence and returns the result.
RubyVM::InstructionSequence.compile("1 + 2").eval #=> 3
static VALUE iseq_eval(VALUE self) { rb_secure(1); return rb_iseq_eval(self); }