Ciao
Ho creato con netbeans 6.1 questo semplicissimo programma scritto in java:
Codice:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ciao;
/**
*
* @author alberto
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
String a = "Ciao ";
String b = "a ";
String c = "tutti!";
String tot=a+b+c;
System.out.print(tot);
}
}
Come faccio a convertirlo in un pacchetto .deb in modo che sia installabile in ubuntu?
Grazie