{"in":{"data":"// Part 8: The Welcome Party\n\nconst http = require('http');\n\nconst hostname = 'csi.annex';\nconst port = 0906;\n\nconst server = http.createServer((res, req) =\u003e {\n  res.statusCode = 200;\n  res.setHeader('Content-Type', 'text/plain');\nlet welcome = `\nThanks for playing\n`;\n  res.end(welcome);\n});\n\nserver.listen(port, hostname, () =\u003e {\n  console.log(`Nerding out at ${hostname} on ${port}!`);\n});","type":"txt"},"out":{"data":"// Part 9: The Welcome Party\n\nconst http = require('http');\n\nconst hostname = 'csi.annex';\nconst port = 0906;\n\nconst server = http.createServer((req, res) =\u003e {\n  res.statusCode = 200;\n  res.setHeader('Content-Type', 'text/plain');\nlet welcome = `\n000000000000000000000000\n0  Thanks for playing  0\n000123456789987654321000\n`;\n  res.end(welcome);\n});\n\nserver.listen(port, hostname, () =\u003e {\n  console.log(`Nerding out at ${hostname} on ${port}!`);\n});","type":"txt"},"client":"0.5.0"}