macro_rules! linkedlist {
    () => { ... };
    ($($e:expr), *) => { ... };
}
Expand description

Create a linked list with ListNode

Example

let list = linkedlist![1, 2, 3]