prunus 0.1.0

A little practice of publishing crates
Documentation
1
2
3
4
5
6
7
8
9
use prunus::Tree;

fn main() {
    let cherry_tree = Tree {
        height: 251.4,
        age: 13,
        blossom_color: (255, 200, 200),
    };
}