Skip to content

Instantly share code, notes, and snippets.

@jz5
Created May 27, 2014 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jz5/da689a30e09723f5ad36 to your computer and use it in GitHub Desktop.
Save jz5/da689a30e09723f5ad36 to your computer and use it in GitHub Desktop.
#coding:utf-8
def application(environ, start_response):
status = '200 OK'
response_headers = [('Content-type', 'text/plain')]
start_response(status, response_headers)
yield 'こんにちは\n'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment