diff --git a/index.js b/index.js index 27ff8d0..573b1f7 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ const PORT = 8000 http .createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }) - res.end('Hello World!!!!!!!!!') + res.end('Example') }) .listen(PORT)