Hello World
-
-
- In the code view add the code below
-
[attachment=115]
-
[attachment=114]
Code
[java]
public class HelloWorld
{
public static void main ( String args [ ] )
{
System.out.println("Hello World");
}
}
[/java]
Explaination
This snippet of code makes use of the print line function which basically just prints a line onto the console with the specifed output.
Thats it!, more tutorials to come.