From 40cf6fdc10b1c4cf7840545519a20bca006a1074 Mon Sep 17 00:00:00 2001 From: cpalreddy06 <74147570+cpalreddy06@users.noreply.github.com> Date: Tue, 16 Feb 2021 17:15:41 -0500 Subject: [PATCH] Update hello.js --- cloud-shell-hello/hello.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud-shell-hello/hello.js b/cloud-shell-hello/hello.js index 0d3e147..83ee211 100644 --- a/cloud-shell-hello/hello.js +++ b/cloud-shell-hello/hello.js @@ -3,7 +3,7 @@ const http = require('http'); const hostname = '127.0.0.1'; const port = 8080; -const message = 'Hello Cloud Gurus!'; +const message = 'Hello Cloud Gurus, it is awesome!'; const fullMessage = `${message}\n`; const server = http.createServer((request, response) => {