Linked List

#![allow(unused)]
fn main() {
pub struct LinkedList<T> {
    pub value: T,
    pub next: Option<Rc<LinkedList<T>>>,
}
}