Writing Our First Program in Java - HELLO WORLD !
Before we can start writing our first lines of code we need to download and install an IDE that supports Java. For our tutorials I will be using the IntelliJ IDEA, which you can download from here . Once you have downloaded and installed the IDE we can begin. First of all we need to create a new java project, which can be done by clicking on new project Next window select java and select the JDK and move to the next step by clicking next. If you don't have any available JDKs then simply go to download JDK and download the Oracle Open JDK. In the next step select create project from template and select command line app and click on next In the next step give the project a name and click on finish, In this case I will name the project "HelloWorld'. Now that the project is created for you, we can move on to the next step and write our first lines of code. You will be presented with a window with a few lines of code that looks as follows. At first it can be intimida...