p_rust 0.1.0

My rust practice
Documentation
1
2
3
4
5
6
7
8
9
use crate::garden::vegetables::AsparagusType;

pub mod vegetables;

pub fn test() -> AsparagusType {
    let vegetable: AsparagusType = String::from("abc");
    println!("vegetable: {}", vegetable);
    vegetable
}