Skip to content

Instantly share code, notes, and snippets.

@yossale
Created April 19, 2011 18:45
Show Gist options
  • Save yossale/929226 to your computer and use it in GitHub Desktop.
Save yossale/929226 to your computer and use it in GitHub Desktop.
Fish class with Java-like getters and setters
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