blob: 3c29b8289e7393782f4a61ed734c6d7f891aff4f (
plain)
1
2
3
4
5
6
7
8
|
function handleRequest(request, response)
{
response.processAsync();
response.setHeader("Content-Type", "application/x-Second-Test", false);
response.write("Hello world.\n");
response.finish();
}
|