blob: 3c86aad7bc770c1afc023b3d382fde32f35d8c25 (
plain)
1
2
3
4
5
6
|
function handleRequest(request, response)
{
response.setStatusLine("1.0", 200, "OK");
response.setHeader("Content-Type", "text/plain; charset=utf-8", false);
response.write("Ciao");
}
|