Skip to content

Instantly share code, notes, and snippets.

@skyler
Created November 17, 2010 17:47
Show Gist options
  • Save skyler/703716 to your computer and use it in GitHub Desktop.
Save skyler/703716 to your computer and use it in GitHub Desktop.
public class T
{
private static final String FOO;
static {
FOO = "baz";
}
public static void main(String[] args)
{
System.out.println(FOO);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment