diff --git a/src/index.js b/src/index.js index e32f120..a043605 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,9 @@ +// Cameron E. - May 18 2026 +// This application prints "Hello, World!" and the numbers 0 to 9along with their squares. + console.log("Hello world!"); for (let i = 0; i < 10; i++) { console.log(i); + console.log(i * i); }