# File lib/merb-core/controller/mixins/controller.rb, line 104
    def render_then_call(str, &blk)
      Proc.new do |response|
        response.write(str)
        blk.call
      end
    end