Skip to content

Instantly share code, notes, and snippets.

@cerciber
Created June 26, 2017 23:33
Show Gist options
  • Save cerciber/f45c6ed031efd8727dc3dfdd47c6300d to your computer and use it in GitHub Desktop.
Save cerciber/f45c6ed031efd8727dc3dfdd47c6300d to your computer and use it in GitHub Desktop.
Estructura de un proyecto basico en java
/* Paquete (Carpeta) */
package paquete;
/* Importaciones */
import importacion.importacion;
/* Clase */
public class Clase {
/* Metodo principal (Inicia el programa) */
public static void main(String[] args) {
// Contenido
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment