print_tree/
print_tree.rs

1// Copyright 2016 Austin Bonander
2//
3// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
4// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5// http://opensource.org/licenses/MIT>, at your option. This file may not be
6// copied, modified, or distributed except according to those terms.
7
8extern crate vec_vp_tree;
9
10use vec_vp_tree::VpTree;
11
12fn main() {
13    let vp_tree = VpTree::new(0i32 .. 8);
14    println!("{:?}", vp_tree);
15}