1app = Proc.new do |env| 2 ['200', { 3 'Content-Length' => '0', 4 'rack.header' => 'hello' 5 }, ['']] 6end 7 8run app 9