def application(environ, start_response): write = start_response('200 OK', [('Content-type', 'text/plain')]) return ["Hello, world!"]