Created
May 15, 2010 18:57
-
-
Save rickyclarkson/402342 to your computer and use it in GitHub Desktop.
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
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