Created
April 13, 2013 13:19
-
-
Save simkimsia/5378379 to your computer and use it in GitHub Desktop.
show Chun that try works
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
| public class testTry { | |
| public static void main(String[] args) { | |
| String test = "test"; | |
| try{ | |
| test = "now changed"; | |
| }catch(Exception e) { | |
| } | |
| System.out.println(test); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment