File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+ # -*- coding: utf-8 -*-
3+
4+ # Módulos | imports
5+
6+ # Constantes | constants declarations
7+
8+ # Clases | local classes
9+ # ---------------------------------------------------------------------
10+
11+ # ---------------------------------------------------------------------
12+
13+ # Funciones | local functions
14+ # ---------------------------------------------------------------------
15+
16+ # ---------------------------------------------------------------------
17+
18+ # Funcion principal | main function definition
19+ # ---------------------------------------------------------------------
20+ def main ():
21+ print ("Hello World!" )
22+
23+ return 0
24+ pass
25+ # ---------------------------------------------------------------------
26+
27+
28+ # Ejecutar solo si se ejecuta como aplicación principal
29+ # --
30+ # Only execute if fun as main application
31+ # ---------------------------------------------------------------------
32+ if __name__ == '__main__' :
33+ main ()
34+
35+ pass
36+ # ---------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments