llist 0.2.5

Lisp-style singly-linked list
Documentation
1
2
3
4
5
6
7
8
9
10
11
# llist

llist is a Lisp-style singly-linked list library for Rust

## Example

```Rust
dolist!((i &cons(10, &list![20, 30, 40])) {
	println!("{:?}", i.car);
});
```