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