Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.16 KB | None | 0 0
  1. import scalaz._
  2.  
  3. trait Node
  4. class A extends Node
  5. class B extends Node
  6.  
  7. class DocumentTree {
  8.   import Scalaz._
  9.  
  10.   var tree: Tree[Node] = (new A).leaf
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement