Skip to content

Instantly share code, notes, and snippets.

@wkimeria
Created December 4, 2016 01:53
Show Gist options
  • Save wkimeria/cdb313e1268b6d9d5e148f57eafc1722 to your computer and use it in GitHub Desktop.
Save wkimeria/cdb313e1268b6d9d5e148f57eafc1722 to your computer and use it in GitHub Desktop.
sealed trait Tree[+A]
case class Leaf[A](value: A) extends Tree[A]
case class Branch[A](left: Tree[A], right: Tree[A]) extends Tree[A]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment