Hello MPGH In Java
I used to program in java when I did all the runescape shit(2006-2009), self educated in java. Now i do web development
Lets start:
Assuming that you have setup your paths etc, we shall create a class.
Paste all of the following into helloWorld.java
Lets break it down
this tells the compiler we are attempting to make a class called helloWorld
we are creating a main method.
This will print out "Hello MPGH" when run.

all done
Lets start:
Assuming that you have setup your paths etc, we shall create a class.
Paste all of the following into helloWorld.java
Code:
class helloWorld {
public static void main(String[] args) {
System.out.println("Hello MPGH!");
}
}
Code:
class helloWorld {
Code:
public static void main(String[] args) {
Code:
System.out.println("Hello MPGH!");

all done

.
