Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# greetings
Simple java hello world type of program for use in demonstrations
11 changes: 6 additions & 5 deletions helloWorkshop.java
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}
}