diff --git a/index.js b/index.js index 1bc38eb..fe15291 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,7 @@ const http = require('http'); const server = http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); - res.end('cambio malo\n'); + res.end('cambio bueno\n'); }); const PORT = 3000;