From c529226287e1a79d646062efcd1294838b8754e9 Mon Sep 17 00:00:00 2001 From: Tamkeen Baber Date: Sat, 25 Oct 2025 13:04:02 -0500 Subject: [PATCH] change message --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 541532ebe..e7e9db332 100644 --- a/app.js +++ b/app.js @@ -2,7 +2,7 @@ const express = require('express'); const app = express(); const port = 8080; -app.get('/', (req, res) => res.send('Hello World!')); +app.get('/', (req, res) => res.send('Hello Ladd00!')); app.listen(port); console.log(`App running on http://localhost:${port}`);