Skip to content

Instantly share code, notes, and snippets.

@erangaeb
Created January 31, 2016 06:29
Show Gist options
  • Save erangaeb/cbd2d5750d4bef321781 to your computer and use it in GitHub Desktop.
Save erangaeb/cbd2d5750d4bef321781 to your computer and use it in GitHub Desktop.
Inheritance
trait Lambda {
val l = "Lambda"
}
trait Calculus extends Lambda {
val c = "Calculus"
val lc = l + c
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment