# File lib/fluid.rb, line 249
  def Fluid.let(*var_specs)
    unwind_list = create_dynamic_context(var_specs)

    begin
      return yield if block_given?
    ensure
      unwind_dynamic_context unwind_list
    end
  end