Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ This program is comprised of two primary features:
2. Main Method - Every application must contain a class that has been declared the main method with signature `public static void main(String[] args)`. We will dive further into declaring methods, and terms such as `public`, `static` and `void` as we move further along. For now, remember how to declare a main method.

Special Note: A vital aspect of syntax to keep in mind as we move forward is that every statement must end in a semi-colon (;), as you see above in our Hello World example.

Hello World