Skip to content

[WIP]This is a correction #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
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");
}
}
}