Skip to content

Instantly share code, notes, and snippets.

@rickyclarkson
Created May 15, 2010 18:57
Show Gist options
  • Save rickyclarkson/402342 to your computer and use it in GitHub Desktop.
Save rickyclarkson/402342 to your computer and use it in GitHub Desktop.
class After {
final String address = makeAddress();
public String getAddress() {
return address;
}
static String makeAddress() {
String result = "1, The Crescent\n";
result += "Codeville";
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment