From cb2509f9b6c931193c625aa6522c4821fe2b84de Mon Sep 17 00:00:00 2001 From: celliott36/software-dev-course-programEnvironment-to-do-list Date: Mon, 18 May 2026 20:03:41 -0500 Subject: [PATCH 1/4] Added author comments --- src/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.js b/src/index.js index e32f120..a0162f5 100644 --- a/src/index.js +++ b/src/index.js @@ -1,3 +1,5 @@ +// Cameron E. - May 18 2026 + console.log("Hello world!"); for (let i = 0; i < 10; i++) { From 85b5089c14f26ecdfafae84c6bc404d90e0bca89 Mon Sep 17 00:00:00 2001 From: celliott36/software-dev-course-programEnvironment-to-do-list Date: Mon, 18 May 2026 20:09:05 -0500 Subject: [PATCH 2/4] Log square of of numbers --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index a0162f5..790722f 100644 --- a/src/index.js +++ b/src/index.js @@ -4,4 +4,5 @@ console.log("Hello world!"); for (let i = 0; i < 10; i++) { console.log(i); + console.log(i * i); } From 3f4f34e887a261bf5ffe7dec15537efcd875b929 Mon Sep 17 00:00:00 2001 From: celliott36/software-dev-course-programEnvironment-to-do-list Date: Mon, 18 May 2026 20:12:47 -0500 Subject: [PATCH 3/4] update author comment with purpose --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index a0162f5..2a61801 100644 --- a/src/index.js +++ b/src/index.js @@ -1,4 +1,5 @@ // Cameron E. - May 18 2026 +// This application prints "Hello, World!" and the numbers 0 to 9. console.log("Hello world!"); From 94fcb0eb7c1fc5d54e5d9b8507faa5599c1e1ff5 Mon Sep 17 00:00:00 2001 From: celliott36/software-dev-course-programEnvironment-to-do-list Date: Mon, 18 May 2026 20:30:22 -0500 Subject: [PATCH 4/4] update comment in feature-conflict branch --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 2939c47..a043605 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,5 @@ // Cameron E. - May 18 2026 -// This application prints "Hello, World!" and the numbers 0 to 9. +// This application prints "Hello, World!" and the numbers 0 to 9along with their squares. console.log("Hello world!");