Created
June 26, 2017 23:33
-
-
Save cerciber/f45c6ed031efd8727dc3dfdd47c6300d to your computer and use it in GitHub Desktop.
Estructura de un proyecto basico en java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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