Advertisement
Guest User

Untitled

a guest
Apr 28th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rust 0.12 KB | None | 0 0
  1. pub enum Rope {
  2.         Leaf { chars: Box<Vec<char>> },
  3.         Node { left: Box<Rope>, right: Box<Rope> },
  4.  
  5.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement