Skip to content

Commit 4df9fbe

Browse files
committed
Copilot third commit
1 parent cfff3c2 commit 4df9fbe

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

comments.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Create web server
2+
const express = require('express');
3+
const app = express();
4+
const port = 3000;
5+
6+
// Create a route
7+
app.get('/', (req, res) => {
8+
res.send('Hello World!');
9+
});
10+
11+
// Start the server
12+
app.listen(port, () => {
13+
console.log(`Example app listening at http://localhost:${port}`);
14+
});

0 commit comments

Comments
 (0)