samedi 27 octobre 2007

Netbeans HelloWorld Tutorial

In this tutorial, you will learn how to create a simple HelloWorld application in Netbeans IDE.






/*
* Main.java
*
* Created on 27 octobre 2007, 20:32
*
* To change this template, choose Tools |
Template Manager TEST
* and open the template in the editor.
*/


package helloworld;

/**
*
* @author SuperAdmin
*/

public class Main {


/** Creates a new instance of Main */
public Main() {
}

/**
* @param args the command line arguments
*/


public static void main(String[] args) {

// TODO code application logic here
}

}

Aucun commentaire: