Created
August 7, 2016 05:40
-
-
Save ea2305/16dc5d8dbf17ef05e7bd92e4fe5a4067 to your computer and use it in GitHub Desktop.
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(); | |
} | |
public static void funcionPrueba(){ | |
System.out.println( variable_alcance_global + " de nuevo"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment