From 3154bcb83239e0620cdf39e79cbd1cf5d6f5b5cc Mon Sep 17 00:00:00 2001 From: hannaklh Date: Tue, 12 Aug 2025 11:23:04 +0200 Subject: [PATCH 1/2] test commit --- src/main/java/com/booleanuk/core/Exercise.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/booleanuk/core/Exercise.java b/src/main/java/com/booleanuk/core/Exercise.java index e928ba0..b1adf91 100644 --- a/src/main/java/com/booleanuk/core/Exercise.java +++ b/src/main/java/com/booleanuk/core/Exercise.java @@ -13,7 +13,7 @@ public class Exercise extends ExerciseBase { // 1. Create an integer member named age with a value of 32 - + int age = 32; // 2. Create a String member named firstName with a value of "Jane" From a77b6cac82f8096373ea986b2a12e14968043426 Mon Sep 17 00:00:00 2001 From: hannaklh Date: Tue, 12 Aug 2025 11:33:43 +0200 Subject: [PATCH 2/2] first exercise --- src/main/java/com/booleanuk/core/Exercise.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/booleanuk/core/Exercise.java b/src/main/java/com/booleanuk/core/Exercise.java index b1adf91..66ca7c1 100644 --- a/src/main/java/com/booleanuk/core/Exercise.java +++ b/src/main/java/com/booleanuk/core/Exercise.java @@ -13,28 +13,28 @@ public class Exercise extends ExerciseBase { // 1. Create an integer member named age with a value of 32 - int age = 32; + public int age = 32; // 2. Create a String member named firstName with a value of "Jane" - + public String firstName = "Jane"; // 3. Create a boolean member named isProgrammer with a value of true - + public boolean isProgrammer = true; // 4. Change the value below so that the tests pass. Check the README.md file for instructions on // running and reading tests - public int firstNumber = 109; + public int firstNumber = 9182; // 5. Change the value below so that the tests pass - public String firstString = "Ruby is to Python what car is to carpet."; + public String firstString = "Java is to Javascript what car is to carpet."; // 6. Change the visibility below so that the tests pass - private boolean isVisible = true; + public boolean isVisible = true; }