Skip to content

Instantly share code, notes, and snippets.

@stephanos
Created October 28, 2012 08:36
Show Gist options
  • Save stephanos/3968071 to your computer and use it in GitHub Desktop.
Save stephanos/3968071 to your computer and use it in GitHub Desktop.
class ClassDeclarationSyntaxInScala {
abstract class AbstractDTO(val id: Long)
class CustomerDTO(id: Long, var name: String, var roles: List[String])
extends AbstractDTO(id)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment