Skip to content

Instantly share code, notes, and snippets.

@simkimsia
Created April 13, 2013 13:19
Show Gist options
  • Select an option

  • Save simkimsia/5378379 to your computer and use it in GitHub Desktop.

Select an option

Save simkimsia/5378379 to your computer and use it in GitHub Desktop.
show Chun that try works
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