Skip to content

Commit 40667ba

Browse files
committed
updated comments
1 parent 5784347 commit 40667ba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

comments.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
// create web server Hello World app
1+
// Create web server Hello World app
22
const http = require('http');
33
const server = http.createServer((req, res) => {
44
res.end('Hello World');
55
});
6+
server.listen(3000, () => {
7+
console.log('Server is listening on port 3000');
8+
});

0 commit comments

Comments
 (0)