extern crate LinkedList; // Name is arbitrary here
use LinkedList::List;
fn main() {
let list = List::new();
// Do stuff
}