From 0de4b81eccc9ca08a27fc4fa51a4dc0afcab177b Mon Sep 17 00:00:00 2001 From: Wendy Raschke Date: Fri, 16 Sep 2022 12:04:40 -0500 Subject: [PATCH] A sample commit --- dev/helloWorld/com/ibm/hello/world/HelloWorld.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev/helloWorld/com/ibm/hello/world/HelloWorld.java b/dev/helloWorld/com/ibm/hello/world/HelloWorld.java index a568173..f5eb899 100644 --- a/dev/helloWorld/com/ibm/hello/world/HelloWorld.java +++ b/dev/helloWorld/com/ibm/hello/world/HelloWorld.java @@ -3,4 +3,8 @@ public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, world."); } + + public static String getThis(String echo) { + System.out.println("Now hear this!"); + return echo; }