diff --git a/README.md b/README.md new file mode 100644 index 0000000..0f9e408 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# greetings +Simple java hello world type of program for use in demonstrations diff --git a/helloWorkshop.java b/helloWorkshop.java index d7d912e..28cee0b 100644 --- a/helloWorkshop.java +++ b/helloWorkshop.java @@ -3,13 +3,14 @@ class helloWorkshop { public static void main(String[] args) { System.out.println("Greetings Workshop!"); - System.out.println("This is an example file"); + System.out.println("This is an example Java file"); System.out.println("for use in workshop exercises."); System.out.println("This is on the master branch"); System.out.println("This file is written in Java."); - System.out.println("Isn't this exciting?"); + System.out.println("Wow! This is amazing! I love to code!"); + System.out.println("Isn't this exciting? Yes, it is!"); System.out.println("Maybe?"); - System.out.println("Okay then."); - System.out.println("Goodbye Workshop!"); + System.out.println("Okay then. Talk to you later! Have a great weekend"); + System.out.println("Goodbye Workshop! Good Luck! See you soon. Hasta La Vista, baby"); } -} \ No newline at end of file +}