Created
April 19, 2011 18:45
-
-
Save yossale/929226 to your computer and use it in GitHub Desktop.
Fish class with Java-like getters and setters
This file contains 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 Fish { | |
private var name = "Default" | |
def getName = name | |
def setName(newName: String) = name = newName | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment