From 8d9075c99997564d7f0739ecfd2fbd8a65cda4e5 Mon Sep 17 00:00:00 2001 From: Daniel Prevoznik Date: Tue, 31 Dec 2019 14:54:47 -0500 Subject: [PATCH 1/2] Adjust to Kevin's name and his programming points --- src/Main.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main.groovy b/src/Main.groovy index 6191a102..7a3db2dc 100644 --- a/src/Main.groovy +++ b/src/Main.groovy @@ -3,8 +3,8 @@ import static Division.divide import static Subtract.subtract import static Sum.sum -def name = "Matthew" -int programmingPoints = 10 +def name = "Kevin" +int programmingPoints = 109 println "Hello ${name}" println "${name} has at least ${programmingPoints} programming points." From a3a93fc8cb683c1448582db1d340727f9e6c30ce Mon Sep 17 00:00:00 2001 From: Daniel Prevoznik Date: Tue, 31 Dec 2019 15:15:32 -0500 Subject: [PATCH 2/2] Corrected the value for programming points. --- src/Main.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.groovy b/src/Main.groovy index 7a3db2dc..c9353a8a 100644 --- a/src/Main.groovy +++ b/src/Main.groovy @@ -4,7 +4,7 @@ import static Subtract.subtract import static Sum.sum def name = "Kevin" -int programmingPoints = 109 +int programmingPoints = 115 println "Hello ${name}" println "${name} has at least ${programmingPoints} programming points."