1app = Proc.new do |env| 2 ['200', { 3 'Content-Length' => '0', 4 'X-Enc' => Encoding.default_external.to_s, 5 }, ['']] 6end 7 8run app 9