From 049a89259eb640e14976e1910dfdf7e7bd782c35 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 6 Aug 2025 17:52:37 +0200 Subject: [PATCH] exercise completed changed to ssh! --- src/main/java/com/booleanuk/core/Exercise.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/booleanuk/core/Exercise.java b/src/main/java/com/booleanuk/core/Exercise.java index e928ba0..524849d 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; // 2. Create a String member named firstName with a value of "Jane" + String firstName = "Jane"; - - // 3. Create a boolean member named isProgrammer with a value of true - + // 3. Create a boolean member named isProgrammer with a value of true. + 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; }