Lets begin: Hello World
Well I am starting my own blog here on steemit I want to share my programming language with you all. I am passionated in Java and so I will show you step by step new Java program. Hope you will enjoy.
As integrated development environment I am using Eclipse. You can download it from eclipse.org.
Well if you want to start an new language the best way is to write an "Hello World"-program.
First you create a simple class. In this example I choosed the name "Test.java." In Java the filename and the classname must be the same. In the class you write the main method. In the brackets you have some arguments which can be used to send information from outside the program to these parameters.
In the main method you start to write your statements. Here we are using the System.out.println method. In the brackets of this method you write your console text.
After execution you find your first "Hello World" on the console: