Java with Humble Beginnings…

At Javadeus, we often get the question – what is the best language to learn if just getting started in coding?

Java is a great place to start because of the syntax and the availability of Java Virtual machines to run compiled bytecode in so many devices…

It all starts with humble beginnings….download NetBeans IDE 8.0 and get started today with your first Java app…it’s that simple.

public class MyFirstApp {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.println (“I Rule”);
System.out.println (“The World”);
}

}

// In time you will find yourself doing battles with source files, classes, methods and statements. Happy coding!

Leave a Comment