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