From 44cf1fb80c2210e1cde286ecceaa74ffeefb6dc4 Mon Sep 17 00:00:00 2001
From: Grayson Venters <graysonventers@gmail.com>
Date: Thu, 25 Feb 2021 22:00:59 -0800
Subject: [PATCH 1/3] Created new file

---
 graySaysHello.js | 3 +++
 1 file changed, 3 insertions(+)
 create mode 100644 graySaysHello.js

diff --git a/graySaysHello.js b/graySaysHello.js
new file mode 100644
index 0000000..6c4b2be
--- /dev/null
+++ b/graySaysHello.js
@@ -0,0 +1,3 @@
+function helloWorld () {
+    console.log('Ahhhh yes a friendly but lonely javascript file in a world of snakes');
+}

From b459b46cb10aff6995ef51a3eacd9b839ede6402 Mon Sep 17 00:00:00 2001
From: Grayson Venters <graysonventers@gmail.com>
Date: Thu, 25 Feb 2021 22:17:15 -0800
Subject: [PATCH 2/3] added new function

---
 graySaysHello.js | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/graySaysHello.js b/graySaysHello.js
index 6c4b2be..eaa34a4 100644
--- a/graySaysHello.js
+++ b/graySaysHello.js
@@ -1,3 +1,7 @@
 function helloWorld () {
     console.log('Ahhhh yes a friendly but lonely javascript file in a world of snakes');
 }
+
+function helloWorldTwo () {
+    console.log('hello test 2');
+}

From 5183882215c394b4ec4ad5a99d42bb60d53099ff Mon Sep 17 00:00:00 2001
From: Grayson Venters <graysonventers@gmail.com>
Date: Thu, 25 Feb 2021 22:19:08 -0800
Subject: [PATCH 3/3] made small change to second function

---
 graySaysHello.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/graySaysHello.js b/graySaysHello.js
index eaa34a4..53e0d98 100644
--- a/graySaysHello.js
+++ b/graySaysHello.js
@@ -3,5 +3,5 @@ function helloWorld () {
 }
 
 function helloWorldTwo () {
-    console.log('hello test 2');
+    console.log('hello test 3');
 }