diff --git a/00_Introduction to Java/00_Introduction/02_Hello World program/02_.md b/00_Introduction to Java/00_Introduction/02_Hello World program/02_.md index c4f4cef..fe3dd81 100755 --- a/00_Introduction to Java/00_Introduction/02_Hello World program/02_.md +++ b/00_Introduction to Java/00_Introduction/02_Hello World program/02_.md @@ -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