diff --git a/README.md b/README.md index 4796425..1cec1fc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ testing-stuff ============= + +Need to do more testing diff --git a/testapp/testproj/src/testapp/HelloThere.java b/testapp/testproj/src/testapp/HelloThere.java index 45c46fc..ddc6df3 100644 --- a/testapp/testproj/src/testapp/HelloThere.java +++ b/testapp/testproj/src/testapp/HelloThere.java @@ -14,6 +14,10 @@ public static void main(String[] args) { * Say hello */ public void hello() { - System.out.println("Hi2"); + System.out.println("Hi"); + } + + public void helloAgain() { + System.out.println("Hello Again"); } }