We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
def with(object, &block) object.instance_eval(&block) end
Example:
a = '1234' with a do with to_i do puts self + 1 end end