This file contains 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
public class Test{ | |
static String variable_alcance_global = "Esto funciona !"; | |
public static void main(String []args){ | |
System.out.println( variable_alcance_global ); | |
funcionPrueba(); | |
} |
This file contains 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
String variable = 23; |
This file contains 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
String miVariable; //Declaración de la variable | |
miVariable = " Asignacion de valor " //Asignación de la variable |
This file contains 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
public class Test{ | |
static String variable_alcance_global = "Esto funciona !"; | |
public static void main(String []args){ | |
System.out.println( variable_alcance_global ); | |
funcionPrueba(); | |
This file contains 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
# instalación de Adonis CLI | |
npm i -g @adonisjs/cli | |
# Creación de nuevo proyecto | |
adonis new myAppName | |
# Abrimos el directorio y ejecutamos el servidor para desarrollo | |
cd myAppName | |
adonis serve --dev |
This file contains 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
/** | |
* Access to user configuration: CMD + "," (MacOs) | |
* Add de follow keys | |
*/ | |
{ | |
"eslint.options": { | |
"configFile": "./.eslintrc.json" | |
}, | |
"eslint.validate": [ | |
"javascript", |
This file contains 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
npx create-nuxt-app nuxt_firebase |
This file contains 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
npm run dev |
This file contains 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
<template> | |
<section> | |
<h1>¡Hola mundo! Nuxt app</h1> | |
</section> | |
</template> |
This file contains 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
adonis install @adonisjs/vow |
OlderNewer