Hey guys, welcome to another java tutorial. In this post we're gonna write our first program.
- Open your Notepad
- OK, let's do coding.
public class First{
public static void main(String []args){
System.out.println("Hello Blogger") :
}
}
Description
- public class First { - We started a java class & its name is 'First'.
- public static void main(String []args) { - This is the built in main method.
- System.out.println("Hello Blogger") : - We print "Hello World" on the screen
This is very nice tutorial
ReplyDelete