From 4a367adc719193758c328ca8b02fab4ecf365999 Mon Sep 17 00:00:00 2001 From: mis693 <37755583+mis693@users.noreply.github.com> Date: Sat, 19 Jan 2019 03:08:21 +0530 Subject: [PATCH] Java basic training Learning step 3 --- .../00_Introduction/02_Hello World program/02_.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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