Skip to content

Instantly share code, notes, and snippets.

@zbskii
Created May 19, 2014 23:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zbskii/688d980c31e6578853ad to your computer and use it in GitHub Desktop.
Save zbskii/688d980c31e6578853ad to your computer and use it in GitHub Desktop.
public class HelloWorld{
public static void main(String []args){
testA(null);
}
public static void testA(String foo){
System.out.println(foo.charAt(2));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment