blob: 2b4e6c50c373a0427dc6d280a7b74fa45d2e1642 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use std::env;
pub mod symbols;
// pub mod tree;
//
use symbols::Tree;
fn main() {
let file_path = env::args().nth(1).unwrap();
let tree = Tree::from_file(&file_path).unwrap();
tree.put();
}
|