Skip to content

Instantly share code, notes, and snippets.

@rlbisbe
Created October 13, 2015 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rlbisbe/2a551740cecdea48ffa7 to your computer and use it in GitHub Desktop.
Save rlbisbe/2a551740cecdea48ffa7 to your computer and use it in GitHub Desktop.
abstract class Employee
case class Manager(startYear: Int, direct: Array[Employee]) extends Employee
case class Dev(startYear: Int) extends Employee
case class Intern(stay: Int) extends Employee
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment